@ngrdt/utils 0.0.2 → 0.0.3

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/README.md CHANGED
@@ -1,3 +1,3 @@
1
- # ngrx utils
1
+ # ngrdt utils
2
2
 
3
3
  - string utils
package/index.cjs.js CHANGED
@@ -1,9 +1 @@
1
- 'use strict';
2
-
3
- class RdtStringUtils {
4
- static capitalize(str) {
5
- return str.charAt(0).toLocaleUpperCase() + str.slice(1);
6
- }
7
- }
8
-
9
- exports.RdtStringUtils = RdtStringUtils;
1
+ "use strict";exports.RdtStringUtils=class{static capitalize(t){return t.charAt(0).toLocaleUpperCase()+t.slice(1)}};
package/index.esm.js CHANGED
@@ -1,7 +1 @@
1
- class RdtStringUtils {
2
- static capitalize(str) {
3
- return str.charAt(0).toLocaleUpperCase() + str.slice(1);
4
- }
5
- }
6
-
7
- export { RdtStringUtils };
1
+ class a{static capitalize(a){return a.charAt(0).toLocaleUpperCase()+a.slice(1)}}export{a as RdtStringUtils};
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@ngrdt/utils",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "dependencies": {},
5
5
  "main": "./index.cjs.js",
6
6
  "module": "./index.esm.js",
7
- "types": "./index.esm.d.ts"
7
+ "types": "src/index.d.ts"
8
8
  }