UNPKG

@ministryofjustice/hmpps-digital-prison-reporting-frontend

Version:

The Digital Prison Reporting Frontend contains templates and code to help display data effectively in UI applications.

7 lines (6 loc) 277 B
"use strict"; /* eslint-disable import/prefer-default-export */ Object.defineProperty(exports, "__esModule", { value: true }); exports.distinct = void 0; const distinct = (values, value) => (values.includes(value) ? values : values.concat(value)); exports.distinct = distinct;