remove repeating dependency from babel-traverse (#3501)

This commit is contained in:
dlwalsh 2016-05-16 23:54:37 +10:00 committed by Henry Zhu
parent 9f8cd91605
commit cdb465a834
2 changed files with 3 additions and 4 deletions

View File

@ -16,7 +16,6 @@
"debug": "^2.2.0",
"globals": "^8.3.0",
"invariant": "^2.2.0",
"lodash": "^4.2.0",
"repeating": "^1.1.3"
"lodash": "^4.2.0"
}
}

View File

@ -1,7 +1,7 @@
/* eslint max-len: 0 */
import includes from "lodash/includes";
import repeating from "repeating";
import repeat from "lodash/repeat";
import Renamer from "./lib/renamer";
import type NodePath from "../path";
import traverse from "../index";
@ -367,7 +367,7 @@ export default class Scope {
}
dump() {
let sep = repeating("-", 60);
let sep = repeat("-", 60);
console.log(sep);
let scope = this;
do {