UNPKG

react-girocode

Version:

A react component for displaying an EPC-QR-Code

13 lines (12 loc) 382 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const StringOfLength = (input, { max }) => { if (input === undefined) { return StringOfLength("", { max }); } if (input.length > max) { throw new Error(`Input "${input}" is longer than specified max lenght ${max}`); } return input; }; exports.default = StringOfLength;