Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 18x 18x 18x 18x 175x | import Stats from './stats'
export default class FileInfo extends Stats {
constructor (node, path) {
super(node, path)
this.path = path
this.assign(node)
}
assign (node) {
Object.keys(node).forEach(key => {
this[key] = node[key]
})
}
}
|