mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-21 09:11:53 +02:00
7 lines
241 B
JavaScript
7 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;
|