Skip to content

Commit

Permalink
refactor: Rename regexp to reg-exp, upgrade to use [email protected]
Browse files Browse the repository at this point in the history
  • Loading branch information
motss committed Nov 1, 2019
1 parent 83f1d40 commit 1175863
Show file tree
Hide file tree
Showing 25 changed files with 273 additions and 236 deletions.
14 changes: 7 additions & 7 deletions deep_clone/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
## Table of contents <!-- omit in toc -->

- [Usage](#Usage)
- [API Reference](#API-Reference)
- [deepClone&lt;T&gt;(target[, options])](#deepCloneltTgttarget-options)
- [deepCloneSync(target[, options])](#deepCloneSynctarget-options)
- [License](#License)
- [Usage](#usage)
- [API Reference](#api-reference)
- [deepClone&lt;T&gt;(target[, options])](#deepclonelttgttarget-options)
- [deepCloneSync(target[, options])](#deepclonesynctarget-options)
- [License](#license)

## Usage

Expand Down Expand Up @@ -54,7 +54,7 @@ import { deepClone } from "https://denopkg.com/motss/[email protected]/deep_clone/
- `absolute` <[boolean][boolean-mdn-url]> If true, deep clone complex objects.
- returns: <[Promise][promise-mdn-url]<`T`>> Promise which resolves with the deeply cloned target.

This method deeply clones a given target with `JSON.parse` + `JSON.stringify` asynchronously by default. Set `absolute: true` for deep cloning complex objects that contain [Date][date-mdn-url], [RegExp][regexp-mdn-url], [Function][function-mdn-url], etc.
This method deeply clones a given target with `JSON.parse` + `JSON.stringify` asynchronously by default. Set `absolute: true` for deep cloning complex objects that contain [Date][date-mdn-url], [RegExp][reg-exp-mdn-url], [Function][function-mdn-url], etc.

### deepCloneSync(target[, options])

Expand All @@ -78,7 +78,7 @@ This methods works the same as `deepClone(target[, options])` except that this i
[number-mdn-url]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number
[object-mdn-url]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object
[promise-mdn-url]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise
[regexp-mdn-url]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp
[reg-exp-mdn-url]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp
[string-mdn-url]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String

<!-- Badges -->
Expand Down
2 changes: 1 addition & 1 deletion jsmodern/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ console.log(total === 6); // true
[number extensions]: https://github.com/motss/jsmodern/tree/master/src/number
[object extensions]: https://github.com/motss/jsmodern/tree/master/src/object
[promise extensions]: https://github.com/motss/jsmodern/tree/master/src/promise
[regexp extensions]: https://github.com/motss/jsmodern/tree/master/src/regexp
[reg-exp extensions]: https://github.com/motss/jsmodern/tree/master/src/reg-exp
[set extensions]: https://github.com/motss/jsmodern/tree/master/src/set
[string extensions]: https://github.com/motss/jsmodern/tree/master/src/string
[symbol extensions]: https://github.com/motss/jsmodern/tree/master/src/symbol
Expand Down
132 changes: 66 additions & 66 deletions jsmodern/array.ts
Original file line number Diff line number Diff line change
@@ -1,98 +1,98 @@
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/all.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/all.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/all.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/all.js";

// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/any.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/any.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/any.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/any.js";

// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/binary-search.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/binary-search.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/binary-search.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/binary-search.js";

// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/chunks.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/chunks.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/chunks.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/chunks.js";

// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/clear.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/clear.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/clear.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/clear.js";

// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/contains.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/contains.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/contains.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/contains.js";

// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/ends-with.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/ends-with.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/ends-with.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/ends-with.js";

// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/enumerate.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/enumerate.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/enumerate.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/enumerate.js";

// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/filled.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/filled.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/filled.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/filled.js";

// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/first-item.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/first-item.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/first-item.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/first-item.js";

// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/fold.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/fold.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/fold.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/fold.js";

// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/insert.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/insert.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/insert.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/insert.js";

// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/is-empty.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/is-empty.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/is-empty.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/is-empty.js";

// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/is-sorted.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/is-sorted.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/is-sorted.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/is-sorted.js";

// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/iter.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/iter.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/iter.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/iter.js";

// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/last-index.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/last-index.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/last-index.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/last-index.js";

// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/last-item.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/last-item.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/last-item.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/last-item.js";

// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/len.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/len.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/len.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/len.js";

// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/max.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/max.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/max.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/max.js";

// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/min.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/min.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/min.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/min.js";

// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/partition.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/partition.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/partition.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/partition.js";

// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/product.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/product.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/product.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/product.js";

// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/reject.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/reject.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/reject.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/reject.js";

// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/remove.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/remove.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/remove.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/remove.js";

// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/repeat.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/repeat.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/repeat.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/repeat.js";

// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/retain.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/retain.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/retain.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/retain.js";

// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/select.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/select.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/select.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/select.js";

// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/shuffle.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/shuffle.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/shuffle.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/shuffle.js";

// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/split.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/split.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/split.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/split.js";

// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/split-at.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/split-at.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/split-at.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/split-at.js";

// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/starts-with.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/starts-with.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/starts-with.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/starts-with.js";

// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/sum.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/sum.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/sum.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/sum.js";

// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/truncate.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/array/truncate.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/truncate.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/array/truncate.js";
4 changes: 2 additions & 2 deletions jsmodern/boolean.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/boolean/is-boolean.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/boolean/is-boolean.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/boolean/is-boolean.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/boolean/is-boolean.js";
16 changes: 8 additions & 8 deletions jsmodern/date.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/date/difference.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/date/difference.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/date/difference.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/date/difference.js";

// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/date/is-after.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/date/is-after.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/date/is-after.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/date/is-after.js";

// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/date/is-before.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/date/is-before.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/date/is-before.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/date/is-before.js";

// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/date/is-date.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/date/is-date.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/date/is-date.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/date/is-date.js";
4 changes: 2 additions & 2 deletions jsmodern/error.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/error/is-error.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/error/is-error.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/error/is-error.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/error/is-error.js";
4 changes: 2 additions & 2 deletions jsmodern/extend.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/extend.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/extend.js";
// deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/extend.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/extend.js";
16 changes: 8 additions & 8 deletions jsmodern/function.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/function/is-async-function.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/function/is-async-function.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/function/is-async-function.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/function/is-async-function.js";

// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/function/is-async-generator-function.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/function/is-async-generator-function.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/function/is-async-generator-function.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/function/is-async-generator-function.js";

// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/function/is-function.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/function/is-function.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/function/is-function.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/function/is-function.js";

// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/function/is-generator-function.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/function/is-generator-function.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/function/is-generator-function.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/function/is-generator-function.js";
8 changes: 4 additions & 4 deletions jsmodern/iterator.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/iterator/is-async-iterator.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/iterator/is-async-iterator.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/iterator/is-async-iterator.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/iterator/is-async-iterator.js";

// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/iterator/is-iterator.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.5.7/dist/iterator/is-iterator.js";
// @deno-types="https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/iterator/is-iterator.d.ts"
export * from "https://cdn.jsdelivr.net/npm/jsmodern@0.6.0/dist/iterator/is-iterator.js";
Loading

0 comments on commit 1175863

Please sign in to comment.