mirror of https://github.com/rancher/ui.git
9 lines
282 B
JavaScript
9 lines
282 B
JavaScript
import { helper } from '@ember/component/helper';
|
|
import Util from 'ui/utils/util';
|
|
|
|
export function formatSi(params, options) {
|
|
return Util.formatSi(params[0], options.increment, options.suffix, options.firstSuffix, options.startingExponent);
|
|
}
|
|
|
|
export default helper(formatSi);
|