UNPKG
imma
Version:
latest (0.0.1)
0.0.1
A collection of functions for dealing with native arrays and objects immutably
imma
/
lib
/
general
/
isEmpty.js
6 lines
(4 loc)
•
118 B
JavaScript
View Raw
1
2
3
4
5
6
'use strict'
const
size =
require
(
'./size'
)
const
isEmpty =
module
.
exports
=
iterable
=>
size
(iterable) ===
0