https://github.com/caged/rollup-d3-bug
https://github.com/caged/rollup-d3-bug
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/caged/rollup-d3-bug
- Owner: caged
- Created: 2017-05-18T20:52:43.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-05-18T20:53:00.000Z (about 9 years ago)
- Last Synced: 2025-12-27T03:41:20.017Z (8 months ago)
- Language: JavaScript
- Size: 1000 Bytes
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
```
npm install
bin/start
open http://localhost:8000/
```
Results in the error:
```
bundle.js:9 Uncaught TypeError: Cannot assign to read only property 'top' of object '#'
```
Offending code:
``` javascript
'use strict';
var slice = Array.prototype.slice;
var identity = function(x) {
return x;
};
var top = 1; // <-- Right here
var right = 2;
var bottom = 3;
var left = 4;
var epsilon = 1e-6;
```