UNPKG

ramda-adjunct

Version:

Ramda Adjunct is the most popular and most comprehensive set of utilities for use with Ramda, providing a variety of useful, well tested functions with excellent documentation.

9 lines (5 loc) 206 B
import { both } from 'ramda'; import isNumber from '../../isNumber'; // eslint-disable-next-line no-restricted-globals const isFinitePolyfill = both(isNumber, isFinite); export default isFinitePolyfill;