diff --git a/package.json b/package.json index 724ba6e..cdb8c29 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@agape/string", - "version": "3.0.0", + "version": "3.0.1", "description": "String and token manipulation", "main": "./cjs/index.js", "module": "./es2020/index.js", diff --git a/src/index.ts b/src/index.ts index 935addd..8247a29 100644 --- a/src/index.ts +++ b/src/index.ts @@ -2,6 +2,7 @@ export * from './lib/functions/toCamelCase'; export * from './lib/functions/toKebabCase'; export * from './lib/functions/toPascalCase'; export * from './lib/functions/quantify'; +export * from './lib/functions/toPlural'; export * from './lib/functions/toSingular'; export * from './lib/functions/toSnakeCase'; export * from './lib/functions/toTitleCase';