Skip to content

Commit

Permalink
fix(jsmodern): Use .ts files by forking master to deno branch
Browse files Browse the repository at this point in the history
  • Loading branch information
motss committed Nov 7, 2019
1 parent cdde457 commit 43c478c
Show file tree
Hide file tree
Showing 17 changed files with 112 additions and 319 deletions.
131 changes: 33 additions & 98 deletions jsmodern/array.ts
Original file line number Diff line number Diff line change
@@ -1,98 +1,33 @@
// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/array/all.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/array/all.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/array/any.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/array/any.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/array/binary-search.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/array/binary-search.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/array/chunks.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/array/chunks.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/array/clear.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/array/clear.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/array/contains.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/array/contains.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/array/ends-with.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/array/ends-with.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/array/enumerate.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/array/enumerate.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/array/filled.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/array/filled.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/array/first-item.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/array/first-item.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/array/fold.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/array/fold.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/array/insert.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/array/insert.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/array/is-empty.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/array/is-empty.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/array/is-sorted.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/array/is-sorted.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/array/iter.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/array/iter.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/array/last-index.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/array/last-index.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/array/last-item.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/array/last-item.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/array/len.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/array/len.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/array/max.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/array/max.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/array/min.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/array/min.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/array/partition.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/array/partition.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/array/product.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/array/product.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/array/reject.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/array/reject.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/array/remove.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/array/remove.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/array/repeat.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/array/repeat.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/array/retain.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/array/retain.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/array/select.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/array/select.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/array/shuffle.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/array/shuffle.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/array/split.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/array/split.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/array/split-at.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/array/split-at.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/array/starts-with.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/array/starts-with.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/array/sum.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/array/sum.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/array/truncate.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/array/truncate.js";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/array/all.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/array/any.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/array/binary-search.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/array/chunks.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/array/clear.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/array/contains.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/array/ends-with.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/array/enumerate.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/array/filled.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/array/first-item.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/array/fold.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/array/insert.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/array/is-empty.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/array/is-sorted.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/array/iter.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/array/last-index.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/array/last-item.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/array/len.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/array/max.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/array/min.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/array/partition.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/array/product.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/array/reject.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/array/remove.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/array/repeat.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/array/retain.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/array/select.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/array/shuffle.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/array/split.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/array/split-at.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/array/starts-with.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/array/sum.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/array/truncate.ts";
3 changes: 1 addition & 2 deletions jsmodern/boolean.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/boolean/is-boolean.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/boolean/is-boolean.js";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/boolean/is-boolean.ts";
15 changes: 4 additions & 11 deletions jsmodern/date.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,4 @@
// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/date/difference.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/date/difference.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/date/is-after.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/date/is-after.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/date/is-before.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/date/is-before.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/date/is-date.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/date/is-date.js";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/date/difference.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/date/is-after.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/date/is-before.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/date/is-date.ts";
3 changes: 1 addition & 2 deletions jsmodern/error.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/error/is-error.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/error/is-error.js";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/error/is-error.ts";
3 changes: 1 addition & 2 deletions jsmodern/extend.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
// deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/extend.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/extend.js";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/extend.ts";
15 changes: 4 additions & 11 deletions jsmodern/function.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,4 @@
// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/function/is-async-function.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/function/is-async-function.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/function/is-async-generator-function.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/function/is-async-generator-function.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/function/is-function.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/function/is-function.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/function/is-generator-function.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/function/is-generator-function.js";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/function/is-async-function.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/function/is-async-generator-function.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/function/is-function.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/function/is-generator-function.ts";
7 changes: 2 additions & 5 deletions jsmodern/iterator.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/iterator/is-async-iterator.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/iterator/is-async-iterator.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/iterator/is-iterator.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/iterator/is-iterator.js";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/iterator/is-async-iterator.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/iterator/is-iterator.ts";
43 changes: 11 additions & 32 deletions jsmodern/map.ts
Original file line number Diff line number Diff line change
@@ -1,32 +1,11 @@
// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/map/entry.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/map/entry.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/map/entry-or-default.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/map/entry-or-default.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/map/from.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/map/from.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/map/get-or-default.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/map/get-or-default.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/map/is-empty.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/map/is-empty.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/map/is-map.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/map/is-map.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/map/iter.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/map/iter.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/map/len.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/map/len.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/map/of.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/map/of.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/map/remove-entry.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/map/remove-entry.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/map/to-array.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/map/to-array.js";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/map/entry.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/map/entry-or-default.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/map/from.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/map/get-or-default.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/map/is-empty.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/map/is-map.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/map/iter.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/map/len.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/map/of.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/map/remove-entry.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/map/to-array.ts";
47 changes: 12 additions & 35 deletions jsmodern/number.ts
Original file line number Diff line number Diff line change
@@ -1,35 +1,12 @@
// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/number/div-floor.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/number/div-floor.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/number/div-mod-floor.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/number/div-mod-floor.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/number/div-rem.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/number/div-rem.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/number/gcd.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/number/gcd.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/number/is-between.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/number/is-between.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/number/is-even.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/number/is-even.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/number/is-multiple-of.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/number/is-multiple-of.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/number/is-number.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/number/is-number.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/number/is-odd.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/number/is-odd.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/number/lcm.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/number/lcm.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/number/mod-floor.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/number/mod-floor.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/number/range.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/number/range.js";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/number/div-floor.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/number/div-mod-floor.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/number/div-rem.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/number/gcd.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/number/is-between.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/number/is-even.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/number/is-multiple-of.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/number/is-number.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/number/is-odd.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/number/lcm.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/number/mod-floor.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/number/range.ts";
3 changes: 1 addition & 2 deletions jsmodern/object.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/object/is-object.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/object/is-object.js";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/object/is-object.ts";
7 changes: 2 additions & 5 deletions jsmodern/promise.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/promise/delayed.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/promise/delayed.js";

// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/promise/is-promise.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/promise/is-promise.js";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/promise/delayed.ts";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/promise/is-promise.ts";
3 changes: 1 addition & 2 deletions jsmodern/reg-exp.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
// @deno-types="https://cdn.jsdelivr.net/npm/[email protected]/dist/reg-exp/is-reg-exp.d.ts"
export * from "https://cdn.jsdelivr.net/npm/[email protected]/dist/reg-exp/is-reg-exp.js";
export * from "https://cdn.jsdelivr.net/gh/motss/[email protected]/src/reg-exp/is-reg-exp.ts";
Loading

0 comments on commit 43c478c

Please sign in to comment.