* Creates a child `StackedMap` that sees the current layers as its parent * scope. * @returns {StackedMap<K, V>} child map
()
| 202 | * @returns {StackedMap<K, V>} child map |
| 203 | */ |
| 204 | createChild() { |
| 205 | return new StackedMap(this.stack); |
| 206 | } |
| 207 | } |
| 208 | |
| 209 | module.exports = StackedMap; |
no outgoing calls
no test coverage detected