UNPKG

@navikt/ds-react

Version:

React components from the Norwegian Labour and Welfare Administration.

10 lines 303 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isAcceptedSize = isAcceptedSize; function isAcceptedSize(file, maxSize = -1) { if (maxSize <= 0 || file.size <= maxSize) { return true; } return false; } //# sourceMappingURL=is-accepted-size.js.map