remove repeating dependency from babel-traverse (#3501)
This commit is contained in:
parent
9f8cd91605
commit
cdb465a834
@ -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"
|
||||
}
|
||||
}
|
||||
|
||||
@ -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 {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user