Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import camel from "./to-camel-case";
import capital from "./to-capital-case";
import constant from "./to-constant-case";
import dot from "./to-dot-case";
import inverse from "./to-invert-case";
import lower from "./to-lower-case";
import none from "./to-no-case";
import pascal from "./to-pascal-case";
import sentence from "./to-sentence-case";
import slug from "./to-slug-case";
import snake from "./to-snake-case";
import space from "./to-space-case";
import title from "./to-title-case";
import upper from "./to-upper-case";
export default {
camel,
capital,
constant,
dot,
none,
pascal,
sentence,
slug,
snake,
space,
title,
lower,
upper,
inverse,
};
|