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

7 wiersze
126 B
JavaScript
Czysty Zwykły widok Historia

2016-06-26 11:53:19 +00:00
"use strict";
module.exports = function isNotFound(err) {
if (err && err.code === 404) return true;
return false;
};