mirror of
https://github.com/linuxserver/core.git
synced 2026-02-20 05:07:19 +08:00
7 lines
126 B
JavaScript
7 lines
126 B
JavaScript
"use strict";
|
|
|
|
|
|
module.exports = function isNotFound(err) {
|
|
if (err && err.code === 404) return true;
|
|
return false;
|
|
}; |