-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* jsr support. * change name * sheet. * code format. * code format.
- Loading branch information
Showing
51 changed files
with
215 additions
and
415 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
// @deno-types="https://deno.land/[email protected]/csv/mod.ts" | ||
export {parse, stringify} from "https://esm.sh/gh/denoland/[email protected]/csv/mod.ts?bundle&target=esnext"; | ||
// @deno-types="https://deno.land/x/[email protected]/index.d.ts" | ||
export {ZipReader, ZipWriter, Uint8ArrayReader, Uint8ArrayWriter} from "https://esm.sh/gh/gildas-lormeau/[email protected]/index.js?bundle&target=esnext"; | ||
export {parse, stringify} from "https://esm.sh/jsr/@std/[email protected]?bundle&target=esnext"; | ||
export {ZipReader, ZipWriter, Uint8ArrayReader, Uint8ArrayWriter} from "https://esm.sh/jsr/@zip-js/[email protected]?bundle&target=esnext"; | ||
|
||
// @deno-types="https://cdn.sheetjs.com/xlsx-0.20.2/package/types/index.d.ts" | ||
export {type WorkBook as RawWorkBook, type WorkSheet as RawWorkSheet, type CellObject as RawWorkCell, set_cptable, read as xlsxRead, write as xlsxWrite, utils as xlsxUtil} from "https://cdn.sheetjs.com/xlsx-0.20.2/package/xlsx.mjs"; | ||
export * as xlsxcp from "https://cdn.sheetjs.com/xlsx-0.20.2/package/dist/cpexcel.full.mjs"; | ||
export {type WorkBook as RawWorkBook, type WorkSheet as RawWorkSheet, type CellObject as RawWorkCell, set_cptable, read as sheetRead, write as sheetWrite, utils as sheetUtil} from "https://cdn.sheetjs.com/xlsx-0.20.2/package/xlsx.mjs"; | ||
export * as excelcp from "https://cdn.sheetjs.com/xlsx-0.20.2/package/dist/cpexcel.full.mjs"; |
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 |
---|---|---|
@@ -1,8 +1,7 @@ | ||
export {assertEquals} from "https://deno.land/[email protected]/assert/mod.ts"; | ||
export {dirname, fromFileUrl} from "https://deno.land/[email protected]/path/mod.ts"; | ||
export {exists} from "https://deno.land/[email protected]/fs/mod.ts"; | ||
export {delay} from "https://deno.land/[email protected]/async/mod.ts"; | ||
|
||
export {DOMParser} from "https://deno.land/x/[email protected]/deno-dom-wasm.ts"; | ||
export {assertEquals} from "jsr:@std/[email protected]"; | ||
export {dirname, fromFileUrl} from "jsr:@std/[email protected]"; | ||
export {exists} from "jsr:@std/[email protected]"; | ||
export {delay} from "jsr:@std/[email protected]"; | ||
export {DOMParser} from "jsr:@b-fuze/[email protected]"; | ||
|
||
export {init as smtpTest} from "npm:[email protected]"; |
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 |
---|---|---|
@@ -1,7 +1,6 @@ | ||
export {Logger, ConsoleHandler, FileHandler} from "https://deno.land/[email protected]/log/mod.ts"; | ||
export {format} from "https://deno.land/[email protected]/datetime/mod.ts"; | ||
|
||
export {type Element, DOMParser} from "https://deno.land/x/[email protected]/deno-dom-wasm.ts"; | ||
export {Logger, ConsoleHandler, FileHandler} from "jsr:@std/[email protected]"; | ||
export {format} from "jsr:@std/[email protected]"; | ||
export {type Element, DOMParser} from "jsr:@b-fuze/[email protected]"; | ||
|
||
// @deno-types="npm:@types/[email protected]" | ||
export {createTransport} from "npm:[email protected]"; |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
export * from "./mod.pure.ts"; | ||
|
||
export * from "./src/pure_ext/csv.ts"; | ||
export * from "./src/pure_ext/excel.ts"; | ||
export * from "./src/pure_ext/sheet.ts"; | ||
export * from "./src/pure_ext/zip.ts"; |
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 |
---|---|---|
@@ -1,6 +1,4 @@ | ||
export * from "./mod.pure.ts"; | ||
|
||
export * from "./src/deno/json.ts"; | ||
export * from "./src/deno/os.ts"; | ||
export * from "./src/deno/path.ts"; | ||
export * from "./src/deno/process.ts"; |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.