-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9a65a67
commit b2d18cd
Showing
26 changed files
with
7,889 additions
and
1,574 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
exports = module.exports = require('../commonjs/read/schema/convertToJson.js').default | ||
exports['default'] = require('../commonjs/read/schema/convertToJson.js').default |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// This file is deprecated. | ||
// It's the same as `index.cjs`, just with an added `*.js` extension. | ||
// It fixes the issue when some software doesn't see files with `*.cjs` file extensions | ||
// when used as the `main` property value in `package.json`. | ||
|
||
exports = module.exports = require('../commonjs/read/schema/convertToJson.js').default | ||
exports['default'] = require('../commonjs/read/schema/convertToJson.js').default |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { | ||
Row, | ||
Schema, | ||
MappingParameters | ||
} from '../types.d.js'; | ||
|
||
export { | ||
MappingParameters | ||
} from '../types.d.js' | ||
|
||
export default function map(data: Row[], schema: Schema, options?: MappingParameters): object[]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { default as default } from '../modules/read/schema/convertToJson.js' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"private": true, | ||
"name": "read-excel-file/schema", | ||
"version": "1.0.0", | ||
"main": "index.cjs", | ||
"module": "index.js", | ||
"types": "./index.d.ts", | ||
"type": "module", | ||
"exports": { | ||
".": { | ||
"types": "./index.d.ts", | ||
"import": "./index.js", | ||
"require": "./index.cjs" | ||
} | ||
}, | ||
"sideEffects": false | ||
} |
Oops, something went wrong.