1.0.2 • Published 2 years ago
@pastaboss/web-utils v1.0.2
Web-Utils
Helpful TS/JS utilities
example
import { Utils } from @pastaboss/web-utils
Utils.strings.replaceUnderscore('my_string');
//result: 'my string'
Utils.strings.removeUnderscore('my_string');
//result: 'mystring'
or:
console.log(Utils.numbers.multiplyDecimals(0.1, 0.1));