@itretyak/my-test-package

Capitalizes your titles as per The Chicago Manual of Style

Usage no npm install needed!

<script type="module">
  import itretyakMyTestPackage from 'https://cdn.skypack.dev/@itretyak/my-test-package';
</script>

README

Title

This package correctly capitalizes your titles as per The Chicago Manual of Style. Furthermore.

Usage

Firstly, install the package:

npm install @artsy/to-title-case
# or
yarn add @artsy/to-title-case

Then load it and convert any input:

import { toTitleCase } from "@artsy/to-title-case"

toTitleCase("hello name")

// Will result in:
// "Hello Name"

That's it!