init source
This commit is contained in:
+23
@@ -0,0 +1,23 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = toBoolean;
|
||||
|
||||
var _assertString = _interopRequireDefault(require("./util/assertString"));
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
function toBoolean(str, strict) {
|
||||
(0, _assertString.default)(str);
|
||||
|
||||
if (strict) {
|
||||
return str === '1' || str === 'true';
|
||||
}
|
||||
|
||||
return str !== '0' && str !== 'false' && str !== '';
|
||||
}
|
||||
|
||||
module.exports = exports.default;
|
||||
module.exports.default = exports.default;
|
||||
Reference in New Issue
Block a user