Skip to content

Commit

Permalink
Fix #81 - Removed published __pycache__ from npm
Browse files Browse the repository at this point in the history
  • Loading branch information
WebReflection committed Nov 18, 2024
1 parent 8eb4d90 commit 98c2404
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
.github
.nyc_output
.travis.yml
__pycache__/
node_modules/
coverage/
rollup/
Expand Down
2 changes: 1 addition & 1 deletion cjs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const set = (known, input, value) => {
/**
* Converts a specialized flatted string into a JS value.
* @param {string} text
* @param {((this: any, key: string, value: any) => any) | undefined): any} [reviver]
* @param {(this: any, key: string, value: any) => any} [reviver]
* @returns {any}
*/
const parse = (text, reviver) => {
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ self.Flatted = (function (exports) {
/**
* Converts a specialized flatted string into a JS value.
* @param {string} text
* @param {((this: any, key: string, value: any) => any) | undefined): any} [reviver]
* @param {(this: any, key: string, value: any) => any} [reviver]
* @returns {any}
*/
var parse = function parse(text, reviver) {
Expand Down

0 comments on commit 98c2404

Please sign in to comment.