core/node_modules/c9/is-notfound.js
2016-06-26 13:53:19 +02:00

7 lines
126 B
JavaScript

"use strict";
module.exports = function isNotFound(err) {
if (err && err.code === 404) return true;
return false;
};