Skip to content

Commit

Permalink
fix missing exports (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
sodiray authored Sep 5, 2021
1 parent b1f09b2 commit 129f714
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ import {
unique,
shuffle,
dict,
draw
draw,
range
} from './array'

import {
Expand All @@ -29,7 +30,8 @@ import {
proxied,
partob,
tryit,
memo
memo,
iter
} from './curry'

import {
Expand All @@ -44,7 +46,8 @@ import {
import {
camal,
snake,
template
template,
uid
} from './string'

import {
Expand Down Expand Up @@ -96,5 +99,8 @@ export default {
dict,
draw,
random,
memo
memo,
iter,
range,
uid
}

0 comments on commit 129f714

Please sign in to comment.