@akadenia/helpers 1.4.0 → 1.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +2 -1
- package/dist/index.js +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { convertCamelToSnakeCase, convertSnakeToCamelCase, fileNameFromPath, formatPosition, handleNullDisplay, pluralizeOnCondition, replaceSpacesWithUnderscore, replaceUnderscoreWithSpaces, truncateText, uuidv4, enforceCharacterLimit, capitalizeText, generateIDFromWord, generateWordFromId, convertCamelToKebabCase, convertKebabToCamelCase, isAcronym, acronymToKebabCase } from "./text";
|
|
1
|
+
import { convertCamelToSnakeCase, convertSnakeToCamelCase, fileNameFromPath, formatPosition, handleNullDisplay, pluralizeOnCondition, replaceSpacesWithUnderscore, replaceUnderscoreWithSpaces, truncateText, uuidv4, enforceCharacterLimit, capitalizeText, generateIDFromWord, generateWordFromId, convertCamelToKebabCase, convertKebabToCamelCase, generateAcronym, isAcronym, acronymToKebabCase } from "./text";
|
|
2
2
|
import * as DateHelpers from "./date";
|
|
3
3
|
import * as ObjectHelpers from "./object";
|
|
4
4
|
import * as MapHelpers from "./map";
|
|
@@ -19,6 +19,7 @@ declare const TextHelpers: {
|
|
|
19
19
|
capitalizeText: typeof capitalizeText;
|
|
20
20
|
convertCamelToKebabCase: typeof convertCamelToKebabCase;
|
|
21
21
|
convertKebabToCamelCase: typeof convertKebabToCamelCase;
|
|
22
|
+
generateAcronym: typeof generateAcronym;
|
|
22
23
|
isAcronym: typeof isAcronym;
|
|
23
24
|
acronymToKebabCase: typeof acronymToKebabCase;
|
|
24
25
|
generateIDFromWord: typeof generateIDFromWord;
|
package/dist/index.js
CHANGED
|
@@ -50,6 +50,7 @@ const TextHelpers = {
|
|
|
50
50
|
capitalizeText: text_1.capitalizeText,
|
|
51
51
|
convertCamelToKebabCase: text_1.convertCamelToKebabCase,
|
|
52
52
|
convertKebabToCamelCase: text_1.convertKebabToCamelCase,
|
|
53
|
+
generateAcronym: text_1.generateAcronym,
|
|
53
54
|
isAcronym: text_1.isAcronym,
|
|
54
55
|
acronymToKebabCase: text_1.acronymToKebabCase,
|
|
55
56
|
generateIDFromWord: text_1.generateIDFromWord,
|