Skip to content

Commit c279c9e

Browse files
committed
feat(times): Support creating a list out of repeated calls to a maker
1 parent 1851528 commit c279c9e

File tree

6 files changed

+322
-1
lines changed

6 files changed

+322
-1
lines changed

index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
exports.hash = require('./hash')
22
exports.oneOf = require('./oneOf')
33
exports.tuple = require('./tuple')
4+
exports.times = require('./times')
45
exports.join = require('./join')
56

67
exports.int = require('./int')

index.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
export { default as hash } from './has'
22
export { default as oneOf } from './oneOf'
33
export { default as tuple } from './tuple'
4+
export { default as times } from './times'
45
export { default as join } from './join'
56

67
export { default as int } from './int'

0 commit comments

Comments
 (0)