deno.land / x / rambda@v9.1.1 / source / _internals / createPathInput.js
12345678import { isInteger } from './isInteger.js'
export function createPathInput(path){ return typeof path === 'string' ? path.split('.').map(x => isInteger(Number(x)) ? Number(x) : x) : path}
Version Info