1.3.0 • Published 3 months ago

scule v1.3.0

Weekly downloads
100,613
License
MIT
Repository
github
Last release
3 months ago

🧵 Scule

npm version npm downloads bundle Codecov

Install

Install using npm or yarn:

npm i scule

Import:

// CommonJS
const { pascalCase } = require("scule");

// ESM
import { pascalCase } from "scule";

Notice: You may need to transpile package for legacy environments.

Utils

pascalCase(str, opts?: { normalize })

Splits string and joins by PascalCase convention:

pascalCase("foo-bar_baz");
// FooBarBaz

Notice: If an uppercase letter is followed by other uppercase letters (like FooBAR), they are preserved. You can use { normalize: true } for strictly following pascalCase convention.

camelCase(str, opts?: { normalize })

Splits string and joins by camelCase convention:

camelCase("foo-bar_baz");
// fooBarBaz

kebabCase(str)

Splits string and joins by kebab-case convention:

kebabCase("fooBar_Baz");
// foo-bar-baz

Notice: It does not preserve case.

snakeCase

Splits string and joins by snake_case convention:

snakeCase("foo-barBaz");
// foo_bar_baz

flatCase

Splits string and joins by flatcase convention:

flatCase("foo-barBaz");
// foobarbaz

trainCase(str, opts?: { normalize })

Split string and joins by Train-Case (a.k.a. HTTP-Header-Case) convention:

trainCase("FooBARb");
// Foo-Ba-Rb

Notice: If an uppercase letter is followed by other uppercase letters (like WWWAuthenticate), they are preserved (=> WWW-Authenticate). You can use { normalize: true } for strictly only having the first letter uppercased.

titleCase(str, opts?: { normalize })

With Title Case all words are capitalized, except for minor words. A compact regex of common minor words (such as a, for, to) is used to automatically keep them lower case.

titleCase("this-IS-aTitle");
// This is a Title

upperFirst(str)

Converts first character to upper case:

upperFirst("hello world!");
// Hello world!

lowerFirst(str)

Converts first character to lower case:

lowerFirst("Hello world!");
// hello world!

splitByCase(str, splitters?)

  • Splits string by the splitters provided (default: ['-', '_', '/', '.'])
  • Splits when case changes from lower to upper or upper to lower
  • Ignores numbers for case changes
  • Case is preserved in returned value
  • Is an irreversible function since splitters are omitted

Development

  • Clone this repository
  • Install latest LTS version of Node.js
  • Enable Corepack using corepack enable
  • Install dependencies using pnpm install
  • Run interactive tests using pnpm dev

License

MIT

@outloud/nuxt@danifoldi/nitropack@farnabaz/c@nyxb/changelog@paescuj/unbuildnuxt3@everything-registry/sub-chunk-2721nuxt-oidc-ssr-auth@ipseity/histoire@jannchie/changelogen@mega-apps/nuxt-plugin-mom@mikebellika/nitropackrehype-custom-coderemark-mdcremark-mdc-edge@moquerie/core@ginjou/with-directus@grixu/list@hedgehoglab/crayon-cli@hempflower/nuxt-open-fetch@hebilicious/form-actions-nuxt@hebilicious/nitro@hebilicious/unstable-nitro@hixt/kit@hixt/schema@lordbeanbag/vite-plugin-svg-icons-monoreporemix-kit@neon.id/interfaces@neon.id/media@neon.id/mock@neon.id/model@neon.id/model-to-schema@neon.id/belajar-models@neon.id/context@neon.id/toko-models@neon.id/toko-operation@neon.id/display@neon.id/field@neon.id/identitas-models@kodadot1/metasquid@kodadot1/uniquery@kiriminaja/flux-uisgx-nuxt-breadcrumbssgx-nuxt-page-headersgx-nuxt-title@philippdormann/changelogensedanbosok@organisme/modeljs-utils-pro@t3headless/nuxt-typo3treetype-tskdimport@tahul/unbuild@takuma-ru/auto-story-generatoranakketigaanaklanangteaanakwadontea@aabelmann/ui-layerautomdauto-angular-story-generatormonorepo-enveslint-plugin-default-import-nameeslint-plugin-arrow-return-stylevite-plugin-analyticsunbuildundef-tableundocsundocs-nightly@uni-helper/vite-plugin-uni-layouts@uni-helper/vite-plugin-uni-middlewarevite-auto-import-resolversvite-plugin-slots-layoutsvite-plugin-typed-routervue-bind-oncearriarri-codegen-utilsarri-validate@antify/database-clinpm-install-and-import-clinxsenxt-uibinaryify-nuxtohmygqlogqlnuxt-graphql-clientnuxtpaginationsnuxt3-notificationsnuxt-component-metanuxt-component-meta-edgenuxt-configsnuxt-typo3nuxt-ui-customnuxt-ui-radio-gp-cardnuxt-ui-vuenuxtnuxt-lucide-iconsnuxt-kqlnuxt-param-validatorsnuxt-oidc-authnuxt-open-fetch
1.3.0

3 months ago

1.2.0

4 months ago

1.1.1

5 months ago

1.1.0

6 months ago

1.0.0

1 year ago

0.3.0

2 years ago

0.3.2

2 years ago

0.3.1

2 years ago

0.2.1

3 years ago

0.2.0

3 years ago

0.1.1

3 years ago

0.1.0

3 years ago

0.0.1

3 years ago