UNPKG

@nativescript/core

Version:

A JavaScript library providing an easy to use api for interacting with iOS and Android platform APIs.

9 lines 261 B
// Utility functions for view-base and related modules export function booleanConverter(v) { if (typeof v === 'string') { v = v.trim().toLowerCase(); return v === 'true' || v === '1'; } return !!v; } //# sourceMappingURL=utils.js.map