UNPKG

@alihbuzaid/ember-ui

Version:

Fleetbase UI provides all the interface components, helpers, services and utilities for building a Fleetbase extension into the Console.

7 lines (5 loc) 221 B
import { helper } from '@ember/component/helper'; import formatBytesUtil from '../utils/format-bytes'; export default helper(function formatBytes([bytes, decimals = 2]) { return formatBytesUtil(bytes, decimals); });