UNPKG

@nativescript/core

Version:

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

8 lines 224 B
export function getFileExtension(path) { if (!path) { return ''; } const index = path.lastIndexOf('.'); return index !== -1 ? path.substring(index + 1) : ''; } //# sourceMappingURL=utils-shared.js.map