push all website files

This commit is contained in:
Jacob Levine
2019-01-06 13:14:45 -06:00
parent d7301e26c3
commit d2d5d4c04e
15662 changed files with 2166516 additions and 0 deletions

16
website/node_modules/npm/lib/utils/save-stack.js generated vendored Normal file
View File

@@ -0,0 +1,16 @@
'use strict'
var inherits = require('inherits')
module.exports = SaveStack
function SaveStack (fn) {
Error.call(this)
Error.captureStackTrace(this, fn || SaveStack)
}
inherits(SaveStack, Error)
SaveStack.prototype.completeWith = function (er) {
this['__' + 'proto' + '__'] = er
this.stack = this.stack + '\n\n' + er.stack
return this
}