Comparing version 1.2.8 to 1.2.9
10
index.ts
@@ -1,5 +0,5 @@ | ||
import * as Func from "./func/index"; | ||
export default { | ||
...Func, | ||
version: require("../package.json").version, | ||
}; | ||
import { captureRejectionSymbol } from "events"; | ||
import { Interface } from "readline"; | ||
import caps from "./src/func/index" | ||
export = caps; |
{ | ||
"name": "node-caps", | ||
"version": "1.2.8", | ||
"version": "1.2.9", | ||
"description": "An easy-to-use module to capitalise an string or array", | ||
@@ -5,0 +5,0 @@ "module": "./src/esm/index.esm.js", |
@@ -1,2 +0,2 @@ | ||
export default { | ||
export default { | ||
def: (str: string) => { | ||
@@ -139,2 +139,2 @@ if (!str || typeof str !== "string") | ||
}, | ||
} | ||
}; |
@@ -6,3 +6,4 @@ { | ||
"lib": ["ESNext"], | ||
"esModuleInterop": true | ||
} | ||
} |
8800
150