UNPKG

@gitlab/ui

Version:
12 lines (11 loc) 306 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 = ... // ``` export const mapToNumber = (x) => Number(x || 0);