UNPKG

@n3okill/utils

Version:
10 lines 291 B
import { isArrayType } from "../type/isArrayType"; /** * Transforms given argument into array * @param arr Argument to be transformed * @returns Array of the given argument */ export function toArray(arr) { return isArrayType(arr) ? arr : [arr]; } //# sourceMappingURL=toArray.js.map