Files
vault/ui/app/helpers/sub.js
2024-01-02 10:35:40 -08:00

11 lines
265 B
JavaScript

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: BUSL-1.1
*/
import { helper } from '@ember/component/helper';
export default helper(function ([a, ...toSubtract]) {
return toSubtract.reduce((total, value) => total - parseInt(value, 0), a);
});