UNPKG

@n3okill/utils

Version:
13 lines 422 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isEmptyOrWithSpace = isEmptyOrWithSpace; const trim_1 = require("./trim"); const toString_1 = require("./toString"); /** * Check if string is empty triming withspaces * @param arg */ function isEmptyOrWithSpace(arg) { return !(0, trim_1.trim)((0, toString_1.toString)(arg)).length; } //# sourceMappingURL=isEmptyOrWithSpace.js.map