v2.0.0
Major Changes
-
NEW Write into or create new Arrays with numeric path segments (#9): e6fea6f
Thank you @bwendt-mylo 🎉
let qux = {}; dset(qux, 'a.0.b.0', 1); dset(qux, 'a.0.b.1', 2); //=> { a: [{ b: [1, 2] }] }
NEW Write into or create new Arrays with numeric path segments (#9): e6fea6f
Thank you @bwendt-mylo 🎉
let qux = {};
dset(qux, 'a.0.b.0', 1);
dset(qux, 'a.0.b.1', 2);
//=> { a: [{ b: [1, 2] }] }