@minionorg/share
Version:
23 lines (22 loc) • 527 B
JavaScript
function n(t) {
return t.charAt(0).toUpperCase() + t.slice(1);
}
function e(t) {
if (!t)
throw new SyntaxError("type is must");
return function(r) {
return Object.prototype.toString.call(r) === `[object ${n(t)}]`;
};
}
function o(t, r) {
if (!e("string")(t))
throw new TypeError("The parameter type is string");
return r !== void 0 && t.length === 0 ? r : t.charAt(0);
}
function c(t) {
const r = o(t);
return r < " " || r.charCodeAt(0) < 32 || r.charCodeAt(0) === 127;
}
export {
c as default
};