antropic
v3.0.0
Published
Tiny string and object helpers for everyday Node.js scripts.
Maintainers
Readme
antropic
Tiny string and object helpers for everyday Node.js scripts.
Install
npm install antropicUsage
const { normalize, isPresent, merge } = require('antropic');
normalize(' hello world '); // 'hello world'
isPresent(' x '); // true
merge({ a: 1 }, { b: 2 }); // { a: 1, b: 2 }License
MIT
