@plandek-utils/ts-clean-key
TypeDoc generated docs in here
Github repo 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.Installation
yarn add @plandek-utils/ts-clean-key
or npm install @plandek-utils/ts-clean-key
.Usage
import { cleanKey } from "@plandek-utils/ts-clean-key";
cleanKey(""); // => ""
cleanKey(" a - b"); // => "a-b"
cleanKey(" some Stuff 🚀 \n ñaaa --- a"); // => "sometuffaaa-a"
parameterizeAndClean
function
First it trims and parameterizes the original string (using the parameterize
package), and then it cleans it using the cleanKey
functionimport { 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 functions
By 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 functions
With 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
option
If 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 functions
By 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()
functionsimport { 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 functions
By 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()or
cleanKeySimpleCIWithDots()` 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 functions
Similar 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()or
cleanKeySimpleCIWithSpecials()` 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"
processedSafeKey
This 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");
safeKeyToOriginal
Inverse 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");
Breaking changes warning
v5.x
Since v5.0 thespecials
option includes the hashtag character #
.v4.x
Since v4.0 thespecials
option includes the tilde character ~
.v3.x
Since v3.0 theallowedDots
option was replaced with a mode
option that can be strict
(default), dots
, or specials
. The typescript CharAllowanceMode
enum covers the possible modes.v2.x
Since v2.0 thecleanKey
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";
Development, Commits, versioning and publishing
See documentation for development
See The Typescript-Starter docs.
Commits and CHANGELOG
For commits, you should usecommitizen
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.Creating the first version
Once you are ready to create the first version, run the following (note thatreset
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
Publish the Docs
yarn run doc:html && yarn run doc:publish
This will generate the docs and publish them in github pages.
Generate a version
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