@plandek-utils/ts-clean-keyTypeDoc generated docs in here
Removes bad chars for a string key (all except number 0-9, lowercase ascii7 letters a-z, dash - and underscore _).
It also removes multiple dashes in a row and replaces them for a single dash, which can be optionally disabled.
It can optionally also allow uppercase ascii7 letters A-Z with a toggle.
It can optionally also allow extra characters, like dots or other special characters, by using a mode option.
yarn add @plandek-utils/ts-clean-key or npm install @plandek-utils/ts-clean-key.
import { cleanKey } from "@plandek-utils/ts-clean-key";
cleanKey(""); // => ""
cleanKey(" a - b"); // => "a-b"
cleanKey(" some Stuff 🚀 \n ñaaa --- a"); // => "sometuffaaa-a"
parameterizeAndClean functionFirst it trims and parameterizes the original string (using the parameterize package), and then it cleans it using the cleanKey function
import { parameterizeAndClean } from "@plandek-utils/ts-clean-key";
parameterizeAndClean(""); // ""
parameterizeAndClean(" a - b "); // "a-b"
parameterizeAndClean(" parameterized url with special characters, öçıŞÇ "); // "parameterized-url-with-special-characters-ocisc"
parameterizeAndClean(" |/~ ", { prependIfNoLetters: "S.tu" }); // "tu"
replaceManyDashes option and functionsBy default, cleanKey will replace many resulting dashes for a single dash. You can disable this behaviour by passing replaceManyDashes: false in the optional options argument, or by using the cleanKeySimple() function.
import { cleanKey, cleanKeySimple } from "@plandek-utils/ts-clean-key";
cleanKey(" something-is---here "); // => "something-is-here"
cleanKey(" something-is---here ", { replaceManyDashes: false }); // => "something-is---here"
cleanKeySimple(" something-is---here "); // => "something-is---here"
trimEdgeDashes option and functionsWith the option trimEdgeDashes: true, cleanKey will remove any dash - at the beginning or end of the clean key.
import { cleanKey } from "@plandek-utils/ts-clean-key";
cleanKey(" -something-is---here-"); // => "-something-is-here-"
cleanKey(" -something-is---here-", { trimEdgeDashes: false }); // => "-something-is-here-"
cleanKey(" -something-is---here-", { trimEdgeDashes: true }); // => "something-is-here"
prependIfNoLetters optionIf in the resulting key no letters a-z or A-Z are found, and the option prependIfNoLetters is given, it will prepend it to the original string, and clean again. Notice that the string passed to be prepended will also be cleaned. It has no effect if the resulting key contains letters.
import { cleanKey, cleanKeySimple } from "@plandek-utils/ts-clean-key";
cleanKey(" 1 - 2 "); // => "1-2"
cleanKey(" 1 - 2", { prependIfNoLetters: "S.tu " }); // => "tu1-2"
cleanKey(" a - 2", { prependIfNoLetters: "S.tu " }); // => "a-2"
caseSensitive option and functionsBy default, cleanKey will not allow uppercase ascii7 letters A-Z. You can change this behaviour by passing caseSensitive: false in the optional second argument, or by using the cleanKeyCI() or cleanKeySimpleCI() functions
import { cleanKey, cleanKeyCI, cleanKeySimpleCI } from "@plandek-utils/ts-clean-key";
cleanKey(" Remove---Me "); // => "emove-e"
cleanKey(" Remove---Me ", { caseSensitive: false }); // => "Remove-Me"
cleanKeyCI(" Remove---Me "); // => "Remove-Me"
cleanKey(" Remove---Me ", { replaceManyDashes: false }); // => "emove---e"
cleanKey(" Remove---Me ", { replaceManyDashes: false, caseSensitive: false }); // => "Remove---Me"
cleanKeySimpleCI(" Remove---Me "); // => "Remove---Me"
mode: dots option and functionsBy default, cleanKey will not allow dots .. You can change this behaviour by passing mode: CharAllowanceMode.Dots (or mode: "dots") in the optional second argument, or by using the cleanKeyCIWithDots(), cleanKeyWithDots(), cleanKeySimpleWithDot()orcleanKeySimpleCIWithDots()` functions.
import {
cleanKey,
cleanKeyCI,
cleanKeySimpleWithDots,
cleanKeySimpleCIWithDots,
cleanKeyWithDots,
CharAllowanceMode,
} from "@plandek-utils/ts-clean-key";
cleanKey(" Re.|~:/m#ove---Me "); // => "emove-e"
cleanKey(" Re.|~:/m#ove---Me ", { mode: CharAllowanceMode.Dots }); // => "e.move-e"
cleanKeyWithDots(" Re.|~:/m#ove---Me "); // => "e.move-e"
cleanKey(" Re.|~:/m#ove---Me ", { caseSensitive: false, mode: CharAllowanceMode.Dots }); // => "Re.move-Me"
cleanKeyWithDots(" Re.|~:/m#ove---Me ", { caseSensitive: false }); // => "Re.move-Me"
cleanKeyCI(" Re.|~:/m#ove---Me ", { mode: CharAllowanceMode.Dots }); // => "Re.move-Me"
cleanKey(" Re.|~:/m#ove---Me ", { replaceManyDashes: false, mode: CharAllowanceMode.Dots }); // => "e.move---e"
cleanKeyWithDots(" Re.|~:/m#ove---Me ", { replaceManyDashes: false }); // => "e.move---e"
cleanKeySimpleWithDots(" Re.|~:/m#ove---Me "); // => "e.move---e"
cleanKey(" Re.|~:/m#ove---Me ", { caseSensitive: false, mode: CharAllowanceMode.Dots, replaceManyDashes: false }); // => "Re.move---Me"
cleanKeyWithDots(" Re.|~:/m#ove---Me ", { caseSensitive: false, replaceManyDashes: false }); // => "Re.move---Me"
cleanKeyCI(" Re.|~:/m#ove---Me ", { mode: CharAllowanceMode.Dots, replaceManyDashes: false }); // => "Re.move---Me"
cleanKeySimpleCIWithDots(" Re.|~:/m#ove---Me "); // => "Re.move---Me"
mode: specials option and functionsSimilar to the dots mode, but allowing also pipes |, colons :, and slashes /.
You can change this behaviour by passing mode: CharAllowanceMode.Specials (or mode: "specials") in the optional second argument, or by using the cleanKeyCIWithSpecials(), cleanKeyWithSpecials(), cleanKeySimpleWithDot()orcleanKeySimpleCIWithSpecials()` functions.
import {
cleanKey,
cleanKeyCI,
cleanKeySimpleWithSpecials,
cleanKeySimpleCIWithSpecials,
cleanKeyWithSpecials,
CharAllowanceMode,
} from "@plandek-utils/ts-clean-key";
cleanKey(" Re.|~:/m#ove---Me "); // => "emove-e"
cleanKey(" Re.|~:/m#ove---Me ", { mode: CharAllowanceMode.Specials }); // => "e.|~:/m#ove-e"
cleanKeyWithSpecials(" Re.|~:/m#ove---Me "); // => "e.|~:/m#ove-e"
cleanKey(" Re.|~:/m#ove---Me ", { caseSensitive: false, mode: CharAllowanceMode.Specials }); // => "Re.|~:/m#ove-Me"
cleanKeyWithSpecials(" Re.|~:/m#ove---Me ", { caseSensitive: false }); // => "Re.|~:/m#ove-Me"
cleanKeyCI(" Re.|~:/m#ove---Me ", { mode: CharAllowanceMode.Specials }); // => "Re.|~:/m#ove-Me"
cleanKey(" Re.|~:/m#ove---Me ", { replaceManyDashes: false, mode: CharAllowanceMode.Specials }); // => "e.|~:/m#ove---e"
cleanKeyWithSpecials(" Re.|~:/m#ove---Me ", { replaceManyDashes: false }); // => "e.|~:/m#ove---e"
cleanKeySimpleWithSpecials(" Re.|~:/m#ove---Me "); // => "e.|~:/m#ove---e"
cleanKey(" Re.|~:/m#ove---Me ", { caseSensitive: false, mode: CharAllowanceMode.Specials, replaceManyDashes: false }); // => "Re.|~:/m#ove---Me"
cleanKeyWithSpecials(" Re.|~:/m#ove---Me ", { caseSensitive: false, replaceManyDashes: false }); // => "Re.|~:/m#ove---Me"
cleanKeyCI(" Re.|~:/m#ove---Me ", { mode: CharAllowanceMode.Specials, replaceManyDashes: false }); // => "Re.|~:/m#ove---Me"
cleanKeySimpleCIWithSpecials(" Re.|~:/m#ove---Me "); // => "Re.|~:/m#ove---Me"
processedSafeKeyThis function returns a special way of cleaning keys: For each character in the string that is not one of the safe characters [a-zA-Z0-9], it will replace them with -HEX_UNICODE_CODE_PADDED_6 (e.g. ' ' => '-000020').
processedSafeKey("casa"); // => "casa"
processedSafeKey("casa de/paco"); // => "casa-000020de-00002Fpaco");
safeKeyToOriginalInverse to processedSafeKey, this function will replace the -HEX_UNICODE_CODE_PADDED_6 with the original character.
safeKeyToOriginal("casa"); // => "casa"
safeKeyToOriginal("casa-000020de-00002Fpaco"); // => "casa de/paco");
Since v5.0 the specials option includes the hashtag character #.
Since v4.0 the specials option includes the tilde character ~.
Since v3.0 the allowedDots option was replaced with a mode option that can be strict (default), dots, or specials. The typescript CharAllowanceMode enum covers the possible modes.
Since v2.0 the cleanKey is not the default export. Instead both cleanKey and cleanKeySimple are named exports.
// v1.x
import cleanKey from "@plandek-utils/ts-clean-key";
// v2.x
import { cleanKey } from "@plandek-utils/ts-clean-key";
See The Typescript-Starter docs.
For commits, you should use commitizen
yarn global add commitizen
#commit your changes:
git cz
As typescript-starter docs state:
This project is tooled for conventional changelog to make managing releases easier. See the standard-version documentation for more information on the workflow, or CHANGELOG.md for an example.
# bump package.json version, update CHANGELOG.md, git tag the release
yarn run version
You may find a tool like wip helpful for managing work in progress before you're ready to create a meaningful commit.
Once you are ready to create the first version, run the following (note that reset is destructive and will remove all files not in the git repo from the directory).
# Reset the repo to the latest commit and build everything
yarn run reset && yarn run test && yarn run doc:html
# Then version it with standard-version options. e.g.:
# don't bump package.json version
yarn run version -- --first-release
# Other popular options include:
# PGP sign it:
# $ yarn run version -- --sign
# alpha release:
# $ yarn run version -- --prerelease alpha
And after that, remember to publish the docs.
And finally push the new tags to github and publish the package to npm.
# Push to git
git push --follow-tags origin master
# Publish to NPM (allowing public access, required if the package name is namespaced like `@somewhere/some-lib`)
yarn publish --access public
yarn run doc:html && yarn run doc:publish
This will generate the docs and publish them in github pages.
There is a single yarn command for preparing a new release. See One-step publish preparation script in TypeScript-Starter
# Prepare a standard release
yarn prepare-release
# Push to git
git push --follow-tags origin master
# Publish to NPM (allowing public access, required if the package name is namespaced like `@somewhere/some-lib`)
yarn publish --access public
Generated using TypeDoc