UNPKG

@proem/some

Version:

Proem package for handling possibly null values

7 lines 227 B
export var map = function (value, mapper) { return value === null ? null : mapper(value); }; map.partial = function (mapper) { return function (value) { return map(value, mapper); }; }; //# sourceMappingURL=index.js.map