helperCheckCopyKey.js 129 B

12345
  1. function helperCheckCopyKey (key) {
  2. return key !== '__proto__' && key !== 'constructor'
  3. }
  4. module.exports = helperCheckCopyKey