UNPKG

@gitlab/ui

Version:
14 lines (12 loc) 322 B
// This contains core mapping behavior (like mapping to native JavaScript types) // and**should not** contain domain-specific mappers. // // ``` // // Good // export const mapToBoolean = ... // // // Bad // export const mapToApolloCacheWidget = ... // ``` const mapToNumber = x => Number(x || 0); export { mapToNumber };