src/fromArray.js
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;
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;