UNPKG

@navikt/ds-react

Version:

React components from the Norwegian Labour and Welfare Administration.

7 lines 192 B
export function isAcceptedSize(file, maxSize = -1) { if (maxSize <= 0 || file.size <= maxSize) { return true; } return false; } //# sourceMappingURL=is-accepted-size.js.map