aureooms/js-tape

View on GitHub
src/fromArray.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import fromIterable from './fromIterable.js';

/**
 * Converts an array to a tape.
 *
 * @function
 * @param {Array} array - the array to convert
 * @returns {Tape}
 */
const fromArray = fromIterable;
export default fromArray;