Jacob Horbulyk

Results 8 issues of Jacob Horbulyk

The ember-data library was an old version. This caused the clicking the "update note" button to throw a `Uncaught TypeError: Cannot call method 'lookup' of undefined` instead of behaving correctly....

**Is your feature request related to a problem? Please describe.** Winston, unlike other logging libraries such as bunyan, lacks a `.trace()` method. This means that if I use a Winston...

* Update xmlbuilder to version 15. * Bump minimum node version to v8 since that is what the latest version of `xmlbuilder` supports. * Potentially fixes https://github.com/Leonidas-from-XIV/node-xml2js/issues/555

Consider the following example code: ``` const xml2js = require('xml2js'); const builder = new xml2js.Builder({ headless: true, }); sampleObject = { foo: 'bar', }; console.log(`Sample A: \n${builder.buildObject(sampleObject)}\n`); sampleObject.bar = 'baz';...

Consider the following code: ``` const xml2js = require('xml2js'); const builder = new xml2js.Builder({ headless: true, }); sampleObject1 = { "root": { "$": { "foo": {"bar": "baz"} } } }...

Currently, it seems as though the XML declaration may not always be the first element written. ## Code to reproduce: ``` const xml2js = require('xml-js'); const input = { data:...

After connecting to an SFTP server, the sftp module learns about which SSH extensions are supported. It would be nice if there was a clean way that calling code could...

Based on my understanding of Facebook's implementation of OAuth 2.0 it is possible to obtain a short term client token without making use of the Facebook App Secret. (You are...