mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-21 10:41:53 +02:00
8 lines
241 B
JavaScript
8 lines
241 B
JavaScript
|
"use strict";
|
||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
exports.isEnoentCodeError = void 0;
|
||
|
function isEnoentCodeError(error) {
|
||
|
return error.code === 'ENOENT';
|
||
|
}
|
||
|
exports.isEnoentCodeError = isEnoentCodeError;
|