{"_id":"humanize-string","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"keywords":["humanize","human","pretty","capitalize","uppercase","case","camelcase","dash","hyphen","underscore","string","text","convert"],"dist-tags":{"latest":"3.1.0"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"description":"Convert a camelized/dasherized/underscored string into a humanized one: `fooBar-Baz_Faz` → `Foo bar baz faz`","readme":"# humanize-string\n\n> Convert a camelized/dasherized/underscored string into a humanized one\n> Example: `fooBar-Baz_Faz` → `Foo bar baz faz`\n\n## Install\n\n```sh\nnpm install humanize-string\n```\n\n## Usage\n\n```js\nimport humanizeString from 'humanize-string';\n\nhumanizeString('fooBar');\n//=> 'Foo bar'\n\nhumanizeString('foo-bar');\n//=> 'Foo bar'\n\nhumanizeString('foo_bar');\n//=> 'Foo bar'\n```\n\n## API\n\n### humanizeString(input, options?)\n\n#### input\n\nType: `string`\n\nThe string to humanize.\n\n#### options\n\nType: `object`\n\n##### preserveCase\n\nType: `boolean`\\\nDefault: `false`\n\nPreserve the original case instead of lowercasing.\n\n```js\nimport humanizeString from 'humanize-string';\n\nhumanizeString('The-NetApp-Guide-to-Kubernetes');\n//=> 'The net app guide to kubernetes'\n\nhumanizeString('The-NetApp-Guide-to-Kubernetes', {preserveCase: true});\n//=> 'The NetApp Guide to Kubernetes'\n```\n\n## Related\n\n- [camelcase](https://github.com/sindresorhus/camelcase) - Convert a dash/dot/underscore/space separated string to camelcase\n","repository":{"type":"git","url":"git+https://github.com/sindresorhus/humanize-string.git"},"users":{"detj":true},"bugs":{"url":"https://github.com/sindresorhus/humanize-string/issues"},"license":"MIT","versions":{"2.0.0":{"name":"humanize-string","version":"2.0.0","keywords":["humanize","human","pretty","capitalize","uppercase","case","camelcase","dash","hyphen","underscore","string","text","convert"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"humanize-string@2.0.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/humanize-string#readme","bugs":{"url":"https://github.com/sindresorhus/humanize-string/issues"},"dist":{"shasum":"010f9108ce195e3a1bb4fef91625498ef65c28c1","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/humanize-string/-/humanize-string-2.0.0.tgz","fileCount":5,"integrity":"sha512-qOUjE6nFvOOFWkWsXZAF8tVkMH+PX+8IQSRLjw/9ZWbQcyKbTdygfeiXehzHYxwuDy4lZ3OGMuEnx7sBw0fj7Q==","signatures":[{"sig":"MEYCIQD724Rh6LpC5meayBLNmISi49Ixfd5dk98VYzikNv9W2gIhAK1tWXP+V49wYCghl6fWjI/tvnRbivKSXAlSaFtyIyKi","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":3331,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcf3c4CRA9TVsSAnZWagAAQnUP/0ymawfu+Ei+9AhFqZq1\nGbiNZExqUiPw9vYWHu66rZAMu1TyDnpbcsFIdNjLdJEDsOm9U8k7xkLb2I/+\nVocL0wJItEQE7AQp8bPoexZ7ysCG40ATFqWSxVTzrCoOjMl3x4b0Su7/2cNV\nynwuc6+koTwot4m6q6Vpq9xC3rYR5Vnyz4dtNeIE1kMmTmJEG2jV6R1OShDa\nSQjKE7gQHQsRfuPlRpnJb4gNMiQpHooYMLfE3sukJEh5qEVzXBcajOEsVPT2\n1gAxq2TRxknIdjuJ3kwYc9U9sb8PL9Y4xyH5T1gcNQkvgiDZVDKpbg7iTXpf\nIIm2seIYeNfv0piYnopBB3LIOM02iQnC2dXeKOGAK/ykaZtyFFHaIJzGNmIf\nd4dr7e9NQ2Zm0jioDkQgMdXbnSTq8C6qW6EtkMoHYQMhwvWgZ7HEul17M/l1\nPMAhFqvgAbiomnEEmUiK3qA5/VZ+WZXMuunw4tcrUTaBSrJcIkNEtxOOfvcv\noELjNbmPqxfvQResDTQF2eGezQS5kr8ZL9YyLrOEEqHmacGVMbmFPwS4JVTq\nywgzAa6mHyeW0uApU0037OU85XTYIEp61hPSRmnR5HHMSOAlFr6faBnDkfmV\nvz/tfkvo86o/nLcBMgOHdzmwzL2Ma9r6tIRelQ9xW38E+krQ1Pn32lHkH405\nFMRG\r\n=byUb\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6"},"gitHead":"33645822e28a39e8056c92cd1177c4c964d2acf7","scripts":{"test":"xo && ava && tsd-check"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/humanize-string.git","type":"git"},"_npmVersion":"6.8.0","description":"Convert a camelized/dasherized/underscored string into a humanized one: `fooBar-Baz_Faz` → `Foo bar baz faz`","directories":{},"_nodeVersion":"8.15.0","dependencies":{"decamelize":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.24.0","ava":"^1.2.1","tsd-check":"^0.3.0"},"_npmOperationalInternal":{"tmp":"tmp/humanize-string_2.0.0_1551857463820_0.35467886668426507","host":"s3://npm-registry-packages"}},"2.1.0":{"name":"humanize-string","version":"2.1.0","keywords":["humanize","human","pretty","capitalize","uppercase","case","camelcase","dash","hyphen","underscore","string","text","convert"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"humanize-string@2.1.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/humanize-string#readme","bugs":{"url":"https://github.com/sindresorhus/humanize-string/issues"},"dist":{"shasum":"a7d7062e5e514e04f072607ded0df853be8a1f2f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/humanize-string/-/humanize-string-2.1.0.tgz","fileCount":5,"integrity":"sha512-sQ+hqmxyXW8Cj7iqxcQxD7oSy3+AXnIZXdUF9lQMkzaG8dtbKAB8U7lCtViMnwQ+MpdCKsO2Kiij3G6UUXq/Xg==","signatures":[{"sig":"MEYCIQCEM63JuBQvpDH8YqwYT4SZSe7dVZ5X3hJvwwaMdxJfSwIhAP2GA1VxLpuEu9wdofQJn8Ozlh6vK6fQpkYDq/w+uxRU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":3800,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcodzFCRA9TVsSAnZWagAAaRoQAI17yribRk8gdhUgOugv\nN7pqLpK0daYgOmyIdQvkiRPLAR1sPCxJzYwgMBfrW2I62uuYlQ50cvl0BKV0\nrPDSXrQ5i8XTjgIPeM3lIm7nsDmx5FPfGmdBI3ghXdW5Q56tUI/qIIFa854/\nheUMgD2JZqwf+32VboddjMP2mZ+I+3Q0Rt9/Xcty5s8VrRO5dyr0FjBRzqFF\nZdvlvAIb2Atz6iGPDbrmDkmsZRAfAWi0hqeIGrbQzrfMWi4yKGWThWlNvqUq\nCgFCPY2IBzJ/sCegUKKDNmr2wWgpaTyyYp6hjf5gwbsS96CZ8N9rOg9DE17h\njlvM4l6yUA3e1XQEUSV5lAbpsOA5jMn7o0LEPwobPLcoCLQni/ljOAHw+axP\nz3zYqWPR6QUmKdkkbXXv/51C4h0tR32kofdexeWN3PkSwSpI6aIwA2sS03nR\n0YEmPXdKNCs/+B2s3mMiZpIuIVmFpUvxP0QLqx5hP0bEaukWWCJdk/LbAID5\nzGPe0KKJHLi/wbkzq8SB5OLfHB1wvovmu5XKi2GSJETOeMqL3ZpzQ1lRyHcC\niYuDOhEvAPnh0udEA25WO6B3/k3aMHidlY5T4lFMLoKXLvCEBcWKqNaiFtpq\nhNjBmafYGxEuX14zY51TEQTUsy1KWzifIfM7M78LS+4yLkRynelw7OsublCi\nKYuP\r\n=wIew\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6"},"gitHead":"2d10b22465f2866bfb75990f8c1e066dfefbeb6d","scripts":{"test":"xo && ava && tsd"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/humanize-string.git","type":"git"},"_npmVersion":"6.9.0","description":"Convert a camelized/dasherized/underscored string into a humanized one: `fooBar-Baz_Faz` → `Foo bar baz faz`","directories":{},"_nodeVersion":"8.15.0","dependencies":{"decamelize":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.24.0","ava":"^1.4.1","tsd":"^0.7.1"},"_npmOperationalInternal":{"tmp":"tmp/humanize-string_2.1.0_1554111683604_0.5398325191864493","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"humanize-string","version":"3.0.0","keywords":["humanize","human","pretty","capitalize","uppercase","case","camelcase","dash","hyphen","underscore","string","text","convert"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"humanize-string@3.0.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/humanize-string#readme","bugs":{"url":"https://github.com/sindresorhus/humanize-string/issues"},"dist":{"shasum":"4ea0ef1daf1d23fd8d8c7864adf0117f74939455","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/humanize-string/-/humanize-string-3.0.0.tgz","fileCount":5,"integrity":"sha512-jhWD2GAZRMELz0IEIfqpEdi0M4CMQF1GpJpBYIopFN6wT+78STiujfQTKcKqZzOJgUkIgJSo2xFeHdsg922JZQ==","signatures":[{"sig":"MEUCIQDfIE/+gP21WttKAr9GXwqY/0SzPcZyaRyi0WsRPmIJMwIgEnOjBDWC7qLELnUctV09B6NiWUO+qih0aAwvo6BVN5A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":3368,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2txHCRA9TVsSAnZWagAAq18P/jjAQpSO/syIrYjMCzD+\nscNtGwjjfnNWY+/ErxjrTU7Maxvzug/ekGywdg5k5SKslv1YNHiy9ue2N0xe\nGgqP9zqFhK8d/IarEkMHUE7E8B/o9oyEFJ5a7OUlm+x5OOseDlZVLqgS5JQL\nPJrHiV7wb//zycTuBmSROza3EdrYsGBUUDd2w0J5M9erVMoPWXRN1imA3sRh\nQo5p8Ol9jRqC+gg1AFBbV8NaHPO2JVQL76mlUh+KVs2T0bV8w4ykgKktGLSR\nHKyQ7ZjvXum2OFoRRgRxp4ZbpgMcogqECheF0Pfn8p2VujYFCEYU0FIsb78G\nsS4PaXblQv1Rnqiib3bv9DO+21koLI6VVaik/CzeoQnsy0BjUhkzD6qOfyBN\nkxRsXEHdXkhIeJrjTYhYDr5h4e0FrdtuK3E/oerenOVpspgKXVw5YOeVyXXb\nJjmh1s0aWKVV/2BqYRfqLf/ROjz3YTIYDmMDpv/g1yr+oLCBkMw9fBIVwTiT\n4TN2CU+F4nAguXLqYeepTnqV0OYdD5kM3RBeMi7mZr/vxmzLakyKfih+MaQo\n2J5Bcci15vxZCpDh9UGBzxqQgVi/JvluhAaGPHjN5W16eRfTMe2RcMbWGTwy\nRRJyBmlsMVNcxFEUGuWwpwE/nPhZLSdfy3FGm4t1+AdZAOcXjVJwnUqv8WER\n38Cw\r\n=zjN6\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","engines":{"node":"^12.20.0 || ^14.13.1 || >=16.0.0"},"exports":"./index.js","funding":"https://github.com/sponsors/sindresorhus","gitHead":"726c57723e380e62ebe6e24fbb0b4da5fd4d959a","scripts":{"test":"xo && ava && tsd"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/humanize-string.git","type":"git"},"_npmVersion":"7.20.3","description":"Convert a camelized/dasherized/underscored string into a humanized one: `fooBar-Baz_Faz` → `Foo bar baz faz`","directories":{},"_nodeVersion":"12.22.1","dependencies":{"decamelize":"^6.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.45.0","ava":"^3.15.0","tsd":"^0.18.0"},"_npmOperationalInternal":{"tmp":"tmp/humanize-string_3.0.0_1634226966906_0.5852336903758519","host":"s3://npm-registry-packages"}},"3.1.0":{"name":"humanize-string","version":"3.1.0","description":"Convert a camelized/dasherized/underscored string into a humanized one: `fooBar-Baz_Faz` → `Foo bar baz faz`","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/humanize-string.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"type":"module","exports":"./index.js","types":"./index.d.ts","sideEffects":false,"engines":{"node":"^12.20.0 || ^14.13.1 || >=16.0.0"},"scripts":{"test":"xo && ava && tsd"},"keywords":["humanize","human","pretty","capitalize","uppercase","case","camelcase","dash","hyphen","underscore","string","text","convert"],"dependencies":{"decamelize":"^6.0.0"},"devDependencies":{"ava":"^3.15.0","tsd":"^0.18.0","xo":"^0.45.0"},"_id":"humanize-string@3.1.0","gitHead":"13fa22e71afe5ff438d2af25f6c7fd01ad055d1b","bugs":{"url":"https://github.com/sindresorhus/humanize-string/issues"},"homepage":"https://github.com/sindresorhus/humanize-string#readme","_nodeVersion":"20.19.1","_npmVersion":"10.9.2","dist":{"integrity":"sha512-wEtOOR3sT8nZ7W0WZwEXo68z2EA0kpcpjaN/ZXxpps9PDzZdX8+TAj+XOGKx2WkagP9mnhWtFpfMNSd2WAhiIQ==","shasum":"7d2ed6a94c2a89b475fc0fab10cd2396e26b991f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/humanize-string/-/humanize-string-3.1.0.tgz","fileCount":5,"unpackedSize":4410,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEQCIF95mI8TL4bphKPnqCzaj/VioCRRW4TT4xPpuKVeLaGFAiAqSUiQtGJiS24K6GLneEPV9TgFjN4p+c3J59SMQg0KTA=="}]},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"directories":{},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/humanize-string_3.1.0_1757664874516_0.05241591836500925"},"_hasShrinkwrap":false},"1.0.0":{"name":"humanize-string","version":"1.0.0","keywords":["humanize","human","pretty","capitalize","uppercase","case","camelcase","dash","hyphen","underscore","string","str","text","convert"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"humanize-string@1.0.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/humanize-string","bugs":{"url":"https://github.com/sindresorhus/humanize-string/issues"},"dist":{"shasum":"267deb611eb0a5eb33cda728fdad8c4a0f6ecba2","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/humanize-string/-/humanize-string-1.0.0.tgz","integrity":"sha512-B80T37S/P1Qj6+Ie/W/jdQLyRv/ADoBBlJbOSzZG5Kb7miVHMdU0NPtx7ogsiLX2xg3U8F7GAPodlEVvxRe9VQ==","signatures":[{"sig":"MEYCIQDuoTMuZ65VtJ9Zy5iTiZ+FcXflcQPZSDrOaYHELIIxkQIhAMFshhd6anK/8Rkgo7EU0BOqmboV31LKqtSteRoou12W","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"267deb611eb0a5eb33cda728fdad8c4a0f6ecba2","engines":{"node":">=0.10.0"},"gitHead":"fb07ec30886570fb2500cf4c8a139316a5dd240d","scripts":{"test":"node test.js"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"https://github.com/sindresorhus/humanize-string","type":"git"},"_npmVersion":"1.4.28","description":"Converts a camelized/dasherized/underscored string into a humanized one: fooBar-Baz_Faz → Foo bar baz faz","directories":{},"devDependencies":{"ava":"0.0.4"}},"1.0.1":{"name":"humanize-string","version":"1.0.1","keywords":["humanize","human","pretty","capitalize","uppercase","case","camelcase","dash","hyphen","underscore","string","str","text","convert"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"humanize-string@1.0.1","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/humanize-string","bugs":{"url":"https://github.com/sindresorhus/humanize-string/issues"},"dist":{"shasum":"fce2d6c545efc25dea1f23235182c98da0180b42","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/humanize-string/-/humanize-string-1.0.1.tgz","integrity":"sha512-J4zy2ZiPwtMEkMHFN9qK1yBDSc0NG+gTWFH+1ROm2cdzhxq0mmnymH7k9r4SYkeRmov4f2w1o3ngFSRZxP1Irw==","signatures":[{"sig":"MEUCIQCx6jLJ9Ur7C4pM+nnmefSBJnSbpNt88Yo6LjGZ6vYTuwIgZ8Y+rhB3j3IKslDc6mc9JrNz9eKtM9QyRPfJNQrXlVQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"fce2d6c545efc25dea1f23235182c98da0180b42","engines":{"node":">=0.10.0"},"gitHead":"f219524290b8b3f848c469d957fcbaaf1cb1eec1","scripts":{"test":"node test.js"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"https://github.com/sindresorhus/humanize-string","type":"git"},"_npmVersion":"1.4.28","description":"Converts a camelized/dasherized/underscored string into a humanized one: fooBar-Baz_Faz → Foo bar baz faz","directories":{},"dependencies":{"decamelize":"^1.0.0"},"devDependencies":{"ava":"0.0.4"}},"1.0.2":{"name":"humanize-string","version":"1.0.2","keywords":["humanize","human","pretty","capitalize","uppercase","case","camelcase","dash","hyphen","underscore","string","str","text","convert"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"humanize-string@1.0.2","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/humanize-string#readme","bugs":{"url":"https://github.com/sindresorhus/humanize-string/issues"},"dist":{"shasum":"fef0a8bc9b1b857ca4013bbfaea75071736988f6","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/humanize-string/-/humanize-string-1.0.2.tgz","fileCount":4,"integrity":"sha512-PH5GBkXqFxw5+4eKaKRIkD23y6vRd/IXSl7IldyJxEXpDH9SEIXRORkBtkGni/ae2P7RVOw6Wxypd2tGXhha1w==","signatures":[{"sig":"MEUCIQCOAo1qY3ot01iS8jVYAbk72hllcCZFW6IoN/imCAPJjwIgPh2o/J6TSHZhQuEGeWtEzvvlbddspQXEZdEyDzFzk4Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2866},"files":["index.js"],"engines":{"node":">=0.10.0"},"gitHead":"10bb94c1c0d7091f328d3601ecec5b3aadafcb8e","scripts":{"test":"ava"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/humanize-string.git","type":"git"},"_npmVersion":"5.6.0","description":"Converts a camelized/dasherized/underscored string into a humanized one: fooBar-Baz_Faz → Foo bar baz faz","directories":{},"_nodeVersion":"8.10.0","dependencies":{"decamelize":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"*"},"_npmOperationalInternal":{"tmp":"tmp/humanize-string_1.0.2_1521789149446_0.5163762462635861","host":"s3://npm-registry-packages"}}},"name":"humanize-string","time":{"2.0.0":"2019-03-06T07:31:03.978Z","2.1.0":"2019-04-01T09:41:23.831Z","3.0.0":"2021-10-14T15:56:07.035Z","created":"2015-01-20T12:52:17.803Z","modified":"2025-09-19T08:24:05.544Z","3.1.0":"2025-09-12T08:14:34.680Z","1.0.0":"2015-01-20T12:52:17.803Z","1.0.1":"2015-01-24T11:16:40.327Z","1.0.2":"2018-03-23T07:12:29.510Z"},"readmeFilename":"readme.md","homepage":"https://github.com/sindresorhus/humanize-string#readme"}