UNPKG
array-types-counter
Version:
latest (1.0.1)
1.0.1
Simple helper to obtain the count of different array item's types.
array-types-counter
/
dist
/
index.js
9 lines
(6 loc)
•
216 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
'use strict'
if
(process.
env
.
NODE_ENV
===
'production'
) {
module
.
exports
=
require
(
'./array-types-counter.cjs.production.min.js'
) }
else
{
module
.
exports
=
require
(
'./array-types-counter.cjs.development.js'
) }