Jonathan Hollingsworth

Results 9 comments of Jonathan Hollingsworth

Sorry about the delay in fixing up the conflict.

As far as I can tell, this job didn't actually fail tests? ![image](https://user-images.githubusercontent.com/4940106/77954098-a0187700-732a-11ea-9197-f03076ca5202.png)

For a workaround on the "segmentsIntersect" bug you can pin the Leaflet version in your own package.json at "1.0.3". This will satisfy the semver requirements of the Leaflet-draw package.json and...

Yeah, that'd be it I reckon. Good find.

@midnightmastermind - was just thinking about why you'd still have the problem. Are you using npm3 or greater? Because npm3 stores all dependencies in a flat structure, so by adding...

@Fillah Have you tried https://github.com/Leaflet/Leaflet.draw/issues/739#issuecomment-311659407 ?

Personally I'm very keen on extending the standard library. I expect a large part of the node_modules bloat I think comes from little modules patching common gaps. A common, approved,...

If you are interested, the code for the async `and` helper is below: ```Javascript import { helper } from '@ember/component/helper' import RSVP from 'rsvp' import DS from 'ember-data' export function...

It would be great to be able to access object properties without having to do something along the lines of ``` const prop2 = obj && obj.prop1 && obj.prop1.prop2 ```...