UNPKG

@rzl-zone/utils-js

Version:

A modern, lightweight set of JavaScript utility functions with TypeScript support for everyday development, crafted to enhance code readability and maintainability.

22 lines (19 loc) 567 B
/*! * ==================================================== * Rzl Utils-JS. * ---------------------------------------------------- * Version: 3.11.0. * Author: Rizalvin Dwiky. * Repository: https://github.com/rzl-zone/utils-js. * ==================================================== */ import { isArray, resolveErrorMessageAssertions } from './chunk-MSUW5VHZ.js'; function assertIsArray(value, options) { if (isArray(value)) return; resolveErrorMessageAssertions({ value, options, requiredValidType: "array" }); } export { assertIsArray };