-
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.
* add date and sjis. * feat: csv * create directory. * WIP: big change. * fix asset path. * fix log path. * sha fix. * word. * improve. * change name. * fix path. * feat: zip * fix dirname. * add attachments. * type spec. * add jsdoc. * remove export. * ext link. * WIP * sheetjs update. * fix test. * not export. * integrate export. * change name. * update docs. * feat: fetch dom * add list. * fix header. * url direct. * update.
- Loading branch information
Showing
62 changed files
with
1,137 additions
and
454 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
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"; | ||
|
||
// @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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
export {parse, stringify} from "https://deno.land/[email protected]/csv/mod.ts"; | ||
|
||
export {ZipReader, ZipWriter, Uint8ArrayReader, Uint8ArrayWriter} from "https://deno.land/x/[email protected]/index.js"; | ||
|
||
// @deno-types="https://cdn.sheetjs.com/xlsx-0.20.1/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.1/package/xlsx.mjs"; | ||
export * as xlsxcp from "https://cdn.sheetjs.com/xlsx-0.20.1/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,3 +1,5 @@ | ||
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 {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 {DOMParser} from "https://deno.land/x/[email protected]/deno-dom-wasm.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
export * from "./mod.ts"; | ||
|
||
export * from "./src/pure_ext/csv.ts"; | ||
export * from "./src/pure_ext/excel.ts"; | ||
export * from "./src/pure_ext/zip.ts"; | ||
|
||
export * from "./src/deno_ext/dom.ts"; | ||
export * from "./src/deno_ext/log.ts"; | ||
export * from "./src/deno_ext/smtp.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +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/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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
export * from "./src/pure/base64.ts"; | ||
export * from "./src/pure/byte.ts"; | ||
export * from "./src/pure/crypto.ts"; | ||
export * from "./src/pure/deep.ts"; | ||
export * from "./src/pure/deflate.ts"; | ||
export * from "./src/pure/fetch.ts"; | ||
export * from "./src/pure/minipack.ts"; | ||
export * from "./src/pure/primitive.ts"; | ||
export * from "./src/pure/stream.ts"; | ||
export * from "./src/pure/text.ts"; | ||
export * from "./src/pure/time.ts"; | ||
export * from "./src/pure/worker.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,25 @@ | ||
import "./test/base64.test.ts"; | ||
import "./test/byte.test.ts"; | ||
import "./test/crypto.test.ts"; | ||
import "./test/deep.test.ts"; | ||
import "./test/deflate.test.ts"; | ||
import "./test/fetch.test.ts"; | ||
import "./test/import.test.ts"; | ||
import "./test/json.deno.test.ts"; | ||
import "./test/log.deno.test.ts"; | ||
import "./test/minipack.test.ts"; | ||
import "./test/path.deno.test.ts"; | ||
import "./test/platform.deno.test.ts"; | ||
import "./test/primitive.test.ts"; | ||
import "./test/process.deno.test.ts"; | ||
import "./test/stream.test.ts"; | ||
import "./test/text.test.ts"; | ||
import "./test/time.test.ts"; | ||
import "./test/worker.test.ts"; | ||
export * from "./test/pure/base64.test.ts"; | ||
export * from "./test/pure/byte.test.ts"; | ||
export * from "./test/pure/crypto.test.ts"; | ||
export * from "./test/pure/deep.test.ts"; | ||
export * from "./test/pure/deflate.test.ts"; | ||
export * from "./test/pure/fetch.test.ts"; | ||
export * from "./test/pure/minipack.test.ts"; | ||
export * from "./test/pure/primitive.test.ts"; | ||
export * from "./test/pure/stream.test.ts"; | ||
export * from "./test/pure/text.test.ts"; | ||
export * from "./test/pure/time.test.ts"; | ||
export * from "./test/pure/worker.test.ts"; | ||
|
||
export * from "./test/pure_ext/csv.test.ts"; | ||
export * from "./test/pure_ext/excel.test.ts"; | ||
export * from "./test/pure_ext/zip.test.ts"; | ||
|
||
export * from "./test/deno/json.test.ts"; | ||
export * from "./test/deno/os.test.ts"; | ||
export * from "./test/deno/path.test.ts"; | ||
export * from "./test/deno/process.test.ts"; | ||
|
||
export * from "./test/deno_ext/dom.test.ts"; | ||
export * from "./test/deno_ext/log.test.ts"; | ||
export * from "./test/deno_ext/smtp.test.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,17 @@ | ||
export * from "./src/base64.ts"; | ||
export * from "./src/byte.ts"; | ||
export * from "./src/crypto.ts"; | ||
export * from "./src/deep.ts"; | ||
export * from "./src/deflate.ts"; | ||
export * from "./src/fetch.ts"; | ||
export * from "./src/import.ts"; | ||
export * from "./src/minipack.ts"; | ||
export * from "./src/primitive.ts"; | ||
export * from "./src/stream.ts"; | ||
export * from "./src/text.ts"; | ||
export * from "./src/time.ts"; | ||
export * from "./src/worker.ts"; | ||
export * from "./src/pure/base64.ts"; | ||
export * from "./src/pure/byte.ts"; | ||
export * from "./src/pure/crypto.ts"; | ||
export * from "./src/pure/deep.ts"; | ||
export * from "./src/pure/deflate.ts"; | ||
export * from "./src/pure/fetch.ts"; | ||
export * from "./src/pure/minipack.ts"; | ||
export * from "./src/pure/primitive.ts"; | ||
export * from "./src/pure/stream.ts"; | ||
export * from "./src/pure/text.ts"; | ||
export * from "./src/pure/time.ts"; | ||
export * from "./src/pure/worker.ts"; | ||
|
||
export * from "./src/json.deno.ts"; | ||
export * from "./src/log.deno.ts"; | ||
export * from "./src/path.deno.ts"; | ||
export * from "./src/platform.deno.ts"; | ||
export * from "./src/process.deno.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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
/** | ||
* Are you running on Windows? | ||
* @example | ||
* ```ts | ||
* const isWin = osWin; | ||
* ``` | ||
*/ | ||
export const osWin:boolean = Deno.build.os === "windows"; |
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
File renamed without changes.
Oops, something went wrong.