7 lines
No EOL
237 B
JavaScript
7 lines
No EOL
237 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.isEmptyOrSpaces = isEmptyOrSpaces;
|
|
function isEmptyOrSpaces(s) {
|
|
return s == null || s.trim().length === 0;
|
|
}
|
|
//# sourceMappingURL=stringUtil.js.map
|