@berish/serber
Version:
Serializable and deserializable adaptive adapter with plugins
12 lines • 359 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const typeof_1 = require("@berish/typeof");
exports.stringPlugin = {
isForSerialize: obj => {
return typeof_1.default(obj) === 'string';
},
isForDeserialize: obj => {
return typeof_1.default(obj) === 'string';
},
};
//# sourceMappingURL=string.js.map