Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@sanjaybh/mrbhans

sanjaybh4ISC2.2.2

Basic package - Removes all spaces from a string

mrbhans, npm, package, sanjaybh

readme

mrbhans

this is first package in npm module

module.exports = function tiny(string) { if (typeof string !== "string") throw new TypeError("Tiny wants a string!"); return string.replace(/\s/g, ""); };