UNPKG

@dwp/govuk-casa

Version:

Framework for creating basic GOVUK Collect-And-Submit-Applications

11 lines (10 loc) 279 B
/** * Test if an array includes the given element. * * @param {Array} source Array to search. * @param {any} search Element to search for. * @returns {boolean} Result. */ module.exports = function includes(source = [], search = '') { return source.includes(search); };