Skip to content

Commit

Permalink
version 0.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
dankogai committed Apr 14, 2023
1 parent 22284fc commit 5248e06
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ import {
remotely

```javascript
import {Xiterable} from 'https://cdn.jsdelivr.net/npm/js-xiterable@0.1.7/xiterable.min.js';
import {Xiterable} from 'https://cdn.jsdelivr.net/npm/js-xiterable@0.1.8/xiterable.min.js';
```

### commonjs (node.js)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "js-xiterable",
"version": "0.1.7",
"version": "0.1.8",
"description": "Make ES6 Iterators Functional Again",
"type": "module",
"main": "xiterable.js",
Expand Down
4 changes: 2 additions & 2 deletions xiterable.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/**
* xiterable.ts
*
* @version: 0.1.7
* @version: 0.1.8
* @author: dankogai
*
*/
export const version = '0.1.7';
export const version = '0.1.8';
// MARK: types
type anyint = number | bigint;
declare const BigInt: typeof Number;
Expand Down

0 comments on commit 5248e06

Please sign in to comment.