Irina Glushko 2389e7160b HW1 done | 3 anni fa | |
---|---|---|
.. | ||
dist | 3 anni fa | |
dist.es2015 | 3 anni fa | |
node_modules | 3 anni fa | |
LICENSE | 3 anni fa | |
README.md | 3 anni fa | |
package.json | 3 anni fa |
Transform into a lower case string with a period between words.
npm install dot-case --save
import { dotCase } from "dot-case";
dotCase("string"); //=> "string"
dotCase("dot.case"); //=> "dot.case"
dotCase("PascalCase"); //=> "pascal.case"
dotCase("version 1.2.10"); //=> "version.1.2.10"
The function also accepts options
.
MIT