ryan neptune

Results 26 issues of ryan neptune

Cool library. How about adding a `lunarDay` method to calculate the lunar day. Seems doable by dividing the lunar age. On the new moon it'd return 1 and so on....

Could rename or alias them like ``` js iters.diff = iters.difference // like v.uniq iters.intersection = iters.intersect // like _.intersection ```

I made changes discussed in #102 and #80. I used a base `Event` object and added `.type`. Doing it that way sets `.isBean` to `true` and some non-applicable properties to...

To improve jQuery-compatibility and general consistency in the arguments passed to event handlers via different methods, I think that `bean.fire()` and `.trigger()` need modification. Consider: ``` js (function ($) {...

The ordering of the class rules for margin and padding causes what to me seem unintuitive composing precedence issues. Is this by design? Examples: https://codepen.io/ryanve/pen/JJKQzx ### Current [(v8)](https://github.com/basscss/basscss/releases) - higher...

This would allow customizing like ``` $hintSelector: '.hint'; $hintPrefix: 'hint--'; ``` to use like ``` example ``` and make it easy to customize via `.hint`

This simple change lets `.hasEvent(event, element?)` work with methods like `array.every` or `array.filter`. It checks if `element` is a number and if so it uses `this` as the `element`. ```...

`Response` [is the name used in our root export](https://github.com/ryanve/response.js/blob/v0.10.0/response.js#L5-L9) but the native fetch API adds [`window.Response`](https://developer.mozilla.org/en-US/docs/Web/API/Response) as part of that standard. What is the best way to mitigate conflict with...

As of the forthcoming 0.9.0 release, all utility methods deprecated. See #19 for context. #### 0.9 may be the last release to include all these - `Response.access` - `Response.action` -...

Response's methods fit into two categories: - response-specific methods only applicable to response.js (`.create()`, `.addTest()`, etc.) - general-purpose methods that are generally applicable (`.dataset()`, `.viewportW()`, etc.) Some of these are...