UNPKG

augmented-string

Version:

Extends String methods adding: - lcFirst(): string; - ucFirst(): string; - ucWords(): string; - toFloat(): number; - toInt(): number; - toCamel(): string; - toKebab(): string; - toPascal(): string; - toSnake(): string; - repeat(count): string;

30 lines (29 loc) 483 B
{ "compilerOptions": { "module": "commonjs", "target": "es6", "types": [ "mocha", "node" ], "lib": [ "es2017", "dom" ], "baseUrl": "./src/", "paths": { "@src/*": ["src/*"] }, "outDir": "./dist", "declaration": true, "resolveJsonModule": true, "esModuleInterop": true, "moduleResolution": "node" }, "exclude": [ "**/*config.ts", "node_modules/", ".nyc_output/", "dist/" ] }