mirror of
				https://github.com/1disk/edp445.git
				synced 2024-08-14 22:47:02 +00:00 
			
		
		
		
	Changed alot of things.
This commit is contained in:
		
							parent
							
								
									a5a0523e5a
								
							
						
					
					
						commit
						3513d5390c
					
				
					 2016 changed files with 336930 additions and 9 deletions
				
			
		
							
								
								
									
										65
									
								
								node_modules/safe-buffer/index.js
									
										
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										65
									
								
								node_modules/safe-buffer/index.js
									
										
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							|  | @ -0,0 +1,65 @@ | |||
| /*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */ | ||||
| /* eslint-disable node/no-deprecated-api */ | ||||
| var buffer = require('buffer') | ||||
| var Buffer = buffer.Buffer | ||||
| 
 | ||||
| // alternative to using Object.keys for old browsers
 | ||||
| function copyProps (src, dst) { | ||||
|   for (var key in src) { | ||||
|     dst[key] = src[key] | ||||
|   } | ||||
| } | ||||
| if (Buffer.from && Buffer.alloc && Buffer.allocUnsafe && Buffer.allocUnsafeSlow) { | ||||
|   module.exports = buffer | ||||
| } else { | ||||
|   // Copy properties from require('buffer')
 | ||||
|   copyProps(buffer, exports) | ||||
|   exports.Buffer = SafeBuffer | ||||
| } | ||||
| 
 | ||||
| function SafeBuffer (arg, encodingOrOffset, length) { | ||||
|   return Buffer(arg, encodingOrOffset, length) | ||||
| } | ||||
| 
 | ||||
| SafeBuffer.prototype = Object.create(Buffer.prototype) | ||||
| 
 | ||||
| // Copy static methods from Buffer
 | ||||
| copyProps(Buffer, SafeBuffer) | ||||
| 
 | ||||
| SafeBuffer.from = function (arg, encodingOrOffset, length) { | ||||
|   if (typeof arg === 'number') { | ||||
|     throw new TypeError('Argument must not be a number') | ||||
|   } | ||||
|   return Buffer(arg, encodingOrOffset, length) | ||||
| } | ||||
| 
 | ||||
| SafeBuffer.alloc = function (size, fill, encoding) { | ||||
|   if (typeof size !== 'number') { | ||||
|     throw new TypeError('Argument must be a number') | ||||
|   } | ||||
|   var buf = Buffer(size) | ||||
|   if (fill !== undefined) { | ||||
|     if (typeof encoding === 'string') { | ||||
|       buf.fill(fill, encoding) | ||||
|     } else { | ||||
|       buf.fill(fill) | ||||
|     } | ||||
|   } else { | ||||
|     buf.fill(0) | ||||
|   } | ||||
|   return buf | ||||
| } | ||||
| 
 | ||||
| SafeBuffer.allocUnsafe = function (size) { | ||||
|   if (typeof size !== 'number') { | ||||
|     throw new TypeError('Argument must be a number') | ||||
|   } | ||||
|   return Buffer(size) | ||||
| } | ||||
| 
 | ||||
| SafeBuffer.allocUnsafeSlow = function (size) { | ||||
|   if (typeof size !== 'number') { | ||||
|     throw new TypeError('Argument must be a number') | ||||
|   } | ||||
|   return buffer.SlowBuffer(size) | ||||
| } | ||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue