UNPKG

react-native-asset

Version:

Linking and unlinking of assets in your react-native app, works for fonts and sounds

20 lines (19 loc) 680 B
// Copyright 2018-2025 the Deno authors. MIT license. // This module is browser compatible. export function _format(sep, pathObject) { const dir = pathObject.dir || pathObject.root; const base = pathObject.base || (pathObject.name ?? "") + (pathObject.ext ?? ""); if (!dir) return base; if (base === sep) return dir; if (dir === pathObject.root) return dir + base; return dir + sep + base; } export function assertArg(pathObject) { if (pathObject === null || typeof pathObject !== "object") { throw new TypeError(`The "pathObject" argument must be of type Object, received type "${typeof pathObject}"`); } }