Skip to content

Commit 98c2404

Browse files
committed
Fix #81 - Removed published __pycache__ from npm
1 parent 8eb4d90 commit 98c2404

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
.github
33
.nyc_output
44
.travis.yml
5+
__pycache__/
56
node_modules/
67
coverage/
78
rollup/

cjs/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ const set = (known, input, value) => {
5656
/**
5757
* Converts a specialized flatted string into a JS value.
5858
* @param {string} text
59-
* @param {((this: any, key: string, value: any) => any) | undefined): any} [reviver]
59+
* @param {(this: any, key: string, value: any) => any} [reviver]
6060
* @returns {any}
6161
*/
6262
const parse = (text, reviver) => {

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ self.Flatted = (function (exports) {
6666
/**
6767
* Converts a specialized flatted string into a JS value.
6868
* @param {string} text
69-
* @param {((this: any, key: string, value: any) => any) | undefined): any} [reviver]
69+
* @param {(this: any, key: string, value: any) => any} [reviver]
7070
* @returns {any}
7171
*/
7272
var parse = function parse(text, reviver) {

0 commit comments

Comments
 (0)