art
art copied to clipboard
Retained mode vector drawing API designed for multiple output modes. There's also a built-in SVG parser.
Assignments to `this` in a global namespace does not make sense in a node environment. This makes it difficult to use this package in conjunction with eg. react and server-side...
Existing code always run setTimeout if running browser is not firefox. This causes jank issue in other major browsers except firefox. Furthermore this invalidates Time Slice feature which reactjs 16.x...
Can cause issues with `git ls-files -m -o` See https://github.com/semantic-release/git/issues/62
add space after # for displaying right heading
was using . instead of -
The current logic `length == 1 ? a + a : a;` is wrong, it should be `length == 1 ? '0' + a : a;` This PR fixes this...
x and y are calculated as relative coords, so it doesn't make sense to use them in the bounds calculation. They were throwing the Math.mins off.