c9-core/node_modules/c9/is-notfound.js

7 wiersze
126 B
JavaScript

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