mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-21 10:38:35 +00:00
8 lines
234 B
JavaScript
8 lines
234 B
JavaScript
|
"use strict";
|
||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
exports.isEnoentCodeError = void 0;
|
||
|
function isEnoentCodeError(error) {
|
||
|
return error.code === 'ENOENT';
|
||
|
}
|
||
|
exports.isEnoentCodeError = isEnoentCodeError;
|