diff --git a/README.md b/README.md index 2ff026f..bd1223b 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ +:icecream: [@functional-data-structure/persistent-stack](https://functional-data-structure.github.io/persistent-stack) == diff --git a/package.json b/package.json index 07bf366..3029ce6 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@functional-data-structure/persistent-stack", "description": "Persistent stack data structures for JavaScript", - "version": "0.0.1", + "version": "1.0.0", "license": "AGPL-3.0", "author": "make-github-pseudonymous-again", "homepage": "https://functional-data-structure.github.io/persistent-stack", diff --git a/src/index.js b/src/index.js index 4ca8e0d..a298974 100644 --- a/src/index.js +++ b/src/index.js @@ -2,9 +2,6 @@ import DONE_ITERATOR from './DONE_ITERATOR.js'; import withMethods from './withMethods.js'; import withoutMethods from './withoutMethods.js'; -/* eslint import/no-anonymous-default-export: [2, {"allowObject": true}] */ -export default withoutMethods; - const {empty, from, isEmpty, push, peek, pop, iter} = withoutMethods; export {