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
				
			
		
							
								
								
									
										46
									
								
								node_modules/fast-deep-equal/index.js
									
										
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										46
									
								
								node_modules/fast-deep-equal/index.js
									
										
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							|  | @ -0,0 +1,46 @@ | |||
| 'use strict'; | ||||
| 
 | ||||
| // do not edit .js files directly - edit src/index.jst
 | ||||
| 
 | ||||
| 
 | ||||
| 
 | ||||
| module.exports = function equal(a, b) { | ||||
|   if (a === b) return true; | ||||
| 
 | ||||
|   if (a && b && typeof a == 'object' && typeof b == 'object') { | ||||
|     if (a.constructor !== b.constructor) return false; | ||||
| 
 | ||||
|     var length, i, keys; | ||||
|     if (Array.isArray(a)) { | ||||
|       length = a.length; | ||||
|       if (length != b.length) return false; | ||||
|       for (i = length; i-- !== 0;) | ||||
|         if (!equal(a[i], b[i])) return false; | ||||
|       return true; | ||||
|     } | ||||
| 
 | ||||
| 
 | ||||
| 
 | ||||
|     if (a.constructor === RegExp) return a.source === b.source && a.flags === b.flags; | ||||
|     if (a.valueOf !== Object.prototype.valueOf) return a.valueOf() === b.valueOf(); | ||||
|     if (a.toString !== Object.prototype.toString) return a.toString() === b.toString(); | ||||
| 
 | ||||
|     keys = Object.keys(a); | ||||
|     length = keys.length; | ||||
|     if (length !== Object.keys(b).length) return false; | ||||
| 
 | ||||
|     for (i = length; i-- !== 0;) | ||||
|       if (!Object.prototype.hasOwnProperty.call(b, keys[i])) return false; | ||||
| 
 | ||||
|     for (i = length; i-- !== 0;) { | ||||
|       var key = keys[i]; | ||||
| 
 | ||||
|       if (!equal(a[key], b[key])) return false; | ||||
|     } | ||||
| 
 | ||||
|     return true; | ||||
|   } | ||||
| 
 | ||||
|   // true if both NaN, false otherwise
 | ||||
|   return a!==a && b!==b; | ||||
| }; | ||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue