Am I doing something wrong below with regard to the delete function? I am frazzled, so I probably am.
$ npm ls | grep dot-object
└─┬ [email protected]
$ node
> var dot = require('dot-object')
undefined
> dot.delete('a', {a: 1})
TypeError: dot.delete is not a function
> dot.remove('a', {a: 1})
1
$ node --version
v10.15.3
As an aside, there is no v1.9.0 or 1.9.0 tag, so that doesn't show up as a release on GitHub.
Am I doing something wrong below with regard to the
deletefunction? I am frazzled, so I probably am.As an aside, there is no
v1.9.0or1.9.0tag, so that doesn't show up as a release on GitHub.