Spaces:
Runtime error
Runtime error
File size: 171 Bytes
23ac194 |
1 2 3 4 5 6 7 8 9 10 11 |
'use strict'
module.exports = function noopSet () {
return {
[Symbol.iterator]: function * () {},
add () {},
delete () {},
has () { return true }
}
}
|