Skip to content
This repository has been archived by the owner on May 11, 2018. It is now read-only.

Commit

Permalink
address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
existentialism committed Mar 14, 2017
1 parent ea788f8 commit 0cd96f5
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions scripts/build-data.js
Expand Up @@ -40,10 +40,9 @@ const interpolateAllResults = (rawBrowsers, tests) => {
let prevBrowser;
let result;
let prevResult;
let bid;
let prevBid;

for (bid in rawBrowsers) {
for (const bid in rawBrowsers) {
// For browsers that are essentially equal to other browsers,
// copy over the results.
browser = rawBrowsers[bid];
Expand Down Expand Up @@ -161,11 +160,6 @@ const getLowestImplementedVersion = ({ features }, env) => {

const envTests = tests
.map(({ res: test, name, isBuiltIn }, i) => {

if (name === "const/basic support") {
console.log(test);
}

// Babel itself doesn't implement the feature correctly,
// don't count against it
// only doing this for built-ins atm
Expand Down

0 comments on commit 0cd96f5

Please sign in to comment.