javascript-kit icon indicating copy to clipboard operation
javascript-kit copied to clipboard

Development kit for the Javascript language

Results 8 javascript-kit issues
Sort by recently updated
recently updated
newest added

On version 3.6.1, when retrieving records which contain a Boolean fragment, I see in my console: > `Fragment type not supported: Boolean` Is `Boolean` not currently supported by this package,...

As soon as I set a project and lunch for the first time $ npm run dev, evertyhing works fine but as soon as I quit it and relaunch that...

When parsing the fragments of a document link, if the fetchLinks parameter was used on a StructuredText field, it does not properly initialize the field and will log something like...

We noticed that there isn't a limit set on the max number of items in the cache, and also no way to set a limit. In `/lib/cache.js` the constructor for...

Keys should be double quoted.

From what I can tell `Fragment.Slice` was deprecated in v3.5, and then removed in v3.5.5 - but this wasn't explained anywhere Deprecated: https://github.com/prismicio/javascript-kit/commit/6eb1085eb0f093a12fd8bffacf77931529a54c2e#diff-be2894dd4a0851ec3d80006f583c2936L994 Removed: https://github.com/prismicio/javascript-kit/commit/f228f91aec124789b96d10e86c2659d2bb085b1b#diff-be2894dd4a0851ec3d80006f583c2936L999 This has broken at least...

Running this in node, I was hitting an error. I was getting typeof `Object` instead of array. This fix is only supported in IE 9 and above (not sure if...

``` js getBoolean: function(name) { var fragment = this.get(name); return fragment.value && (fragment.value.toLowerCase() == 'yes' || fragment.value.toLowerCase() == 'on' || fragment.value.toLowerCase() == 'true'); }, ``` Need to check if fragment...