function eql(obj, other) {
if(stringp(obj) && stringp(other) && obj === other) return false;
return obj === other;
} function equal(obj, other, equalp) {
if (equalp === void 0) { equalp = false; }
var _tostring = function (value) { return Object.prototype.toString.call(value); };
var emptyp = function (value) {
return JSON.stringify(value).length === 2 ? true : false;
};
function Equal(obj, other, equalp) {
var objTag = _tostring(obj);
var otherTag = _tostring(other);
var objectTag = '[object Object]';
var arrayTag = '[object Array]';
if (objTag !== objectTag && objTag !== arrayTag && otherTag !== objectTag && otherTag !== arrayTag) {
if (equalp && typeof obj === 'string' && typeof other === 'string') {
return (obj).toLocaleUpperCase() === (other).toLocaleUpperCase();
}
return obj === other;
}
if (objTag !== otherTag)
return false; // 集合类型不一样
if (Object.getOwnPropertyNames(obj).length !== Object.getOwnPropertyNames(other).length)
return false; // 集合元素数量不一样
if (emptyp(obj) && emptyp(other))
return true; // 类型一样的空集合,永远相等。
var data = (function () {
var data = Object.getOwnPropertyNames(obj);
if (objTag === arrayTag) {
data.pop();
return data;
}
else {
return data;
}
})();
for (var i in data) {
var k = data[i];
if (k in other) { // 元素是否相交
var obj_value = obj[k];
var other_value = other[k];
var obj_item_tag = _tostring(obj_value);
var other_item_tag = _tostring(other_value);
if (obj_item_tag === other_item_tag) {
if (obj_item_tag === objectTag || obj_item_tag === arrayTag || other_item_tag === objectTag || other_item_tag === arrayTag) {
return Equal(obj_value, other_value, equalp);
}
else {
if (obj_value === other_value) {
console_1.log('done.');
}
else {
return false;
}
}
}
else {
return false;
}
}
else {
return false;
}
}
return true;
}
return Equal(obj, other, equalp);
} function equalp(obj, other) {
return equal(obj, other, true);
}

调试

import {
log as l
} from 'console'; function eql(obj: any, other: any) {
return obj === other;
} function equal(obj: any, other: any, equalp: boolean = false) {
const _tostring = (value: any): string => Object.prototype.toString.call(value);
const emptyp = function (value: any) {
return JSON.stringify(value).length === 2 ? true : false;
} function Equal(obj: any, other: any, equalp: boolean): boolean {
let objTag = _tostring(obj);
let otherTag = _tostring(other);
let objectTag = '[object Object]'
let arrayTag = '[object Array]' if (objTag !== objectTag && objTag !== arrayTag && otherTag !== objectTag && otherTag !== arrayTag) {
if (equalp && typeof obj === 'string' && typeof other === 'string') {
return (obj).toLocaleUpperCase() === (other).toLocaleUpperCase();
}
return obj === other;
}
if (objTag !== otherTag) return false;// 集合类型不一样
if (Object.getOwnPropertyNames(obj).length !== Object.getOwnPropertyNames(other).length) return false; // 集合元素数量不一样
if (emptyp(obj) && emptyp(other)) return true; // 类型一样的空集合,永远相等。 let data: any[] = (function () {
let data = Object.getOwnPropertyNames(obj);
if (objTag === arrayTag) {
data.pop()
return data
} else {
return data
}
})() for (const i in data) {
const k = data[i];
if (k in other) { // 元素是否相交
let obj_value = obj[k];
let other_value = other[k];
let obj_item_tag = _tostring(obj_value);
let other_item_tag = _tostring(other_value); if (obj_item_tag === other_item_tag) {
if (obj_item_tag === objectTag || obj_item_tag === arrayTag || other_item_tag === objectTag || other_item_tag === arrayTag) {
return Equal(obj_value, other_value, equalp);
} else {
if (obj_value === other_value) {
l('done.');
} else {
return false;
}
}
} else {
return false;
}
} else {
return false;
}
} return true;
} return Equal(obj, other, equalp)
} function equalp(obj: any, other: any) {
return equal(obj, other, true);
}
l(equalp('hello', 'HELLo'))
function equal(obj, other) {
const objectTag = "[object Object]";
const arrayTag = "[object Array]";
const _tostring = value => Object.prototype.toString.call(value);
const emptyp = value => JSON.stringify(value).length === 2;
// 记录所有的对象
function Equal(obj, other) {
let objTag = _tostring(obj);
let otherTag = _tostring(other); // 非集合,使用===判断
if (
objTag !== objectTag &&
objTag !== arrayTag &&
otherTag !== objectTag &&
otherTag !== arrayTag
) {
return obj === other;
} // 集合类型不一样
if (objTag !== otherTag) return false; // 集合元素数量不一样
if (
Object.getOwnPropertyNames(obj).length !==
Object.getOwnPropertyNames(other).length
)
return false; // 类型一样的空集合,永远相等。
if (emptyp(obj) && emptyp(other)) return true; let rsult = false;
for (const k in obj) {
if (k in other) {
const obj_value = obj[k];
const other_value = other[k];
rsult = Equal(obj_value, other_value);
} else {
return false;
}
}
return rsult;
} return Equal(obj, other);
}

js函数 eql,equal,equalp的更多相关文章

  1. api日常总结:前端常用js函数和CSS常用技巧

    我的移动端media html{font-size:10px} @media screen and (min-width:321px) and (max-width:375px){html{font- ...

  2. 3.3 js函数

    1.函数语法: 函数声明的方式:function 函数名(参数1,参数2-){//函数体;}函数调用:函数名(参数1,参数2-); 函数内不一定都指定返回值. 如果需要指定返回值,可用 return ...

  3. Js函数function基础理解

    正文:我们知道,在js中,函数实际上是一个对象,每个函数都是Function类型的实例,并且都与其他引用类型一样具有属性和方法.因此,函数名实际上是指向函数对象的指针,不与某个函数绑定.在常见的两种定 ...

  4. js函数表达式和函数声明的区别

    我们已经知道,在任意代码片段外部添加包装函数,可以将内部的变量和函数定义"隐 藏"起来,外部作用域无法访问包装函数内部的任何内容. 例如: var a = 2; function ...

  5. 通用js函数集锦<来源于网络> 【二】

    通用js函数集锦<来源于网络> [二] 1.数组方法集2.cookie方法集3.url方法集4.正则表达式方法集5.字符串方法集6.加密方法集7.日期方法集8.浏览器检测方法集9.json ...

  6. 通用js函数集锦<来源于网络/自己> 【一】

    通用js函数集锦<来源于网络/自己>[一] 1.返回一个全地址2.cookie3.验证用户浏览器是否是微信浏览器4.验证用户浏览器是否是微博内置浏览器5.query string6.验证用 ...

  7. 100多个基础常用JS函数和语法集合大全

    网站特效离不开脚本,javascript是最常用的脚本语言,我们归纳一下常用的基础函数和语法: 1.输出语句:document.write(""); 2.JS中的注释为//3.传统 ...

  8. JS函数

    1.document.write(""); 输出语句2.JS中的注释为//3.传统的HTML文档顺序是:document->html->(head,body)4.一个浏 ...

  9. js函数和运算符

    函数是由事件驱动或者它被调用时执行可重复使用的代码块. <script> function myFunction(){ Alert(“hello World!”): } </scri ...

随机推荐

  1. WebSocket——为Web应用带来桌面应用般的灵活性【转载+整理】

    原文地址 本文内容 WebSocket 简介 浏览器端的 JavaScript 实现 Java 端的 WebSocket 实现 对 Web 应用的重新思考 使用WebSocket时所需注意的要点 We ...

  2. Oracle 12c利用数据泵DataPump进行Oracle数据库备份

    1.查看数据库版本 SQL> select version from v$instance; VERSION ----------------- 12.1.0.2.0 2.sysdba用户登录s ...

  3. Oracle 12c pdb的数据泵导入导出

    12c推出了可插拔数据库,在一个容器cdb中以多租户的形式同时存在多个数据库pdb.在为pdb做数据泵导入导出时和传统的数据库有少许不同.           1,需要为pdb添加tansnames ...

  4. 重写$.ajax方法

    /*重写Jquery中的ajax 封装壳*/ $(function () { (function ($) { //首先备份下jquery的ajax方法 var _ajax = $.ajax; //重写 ...

  5. Nginx 功能模块

    一.Nginx 核心功能模块 Nginx 核心功能模块负责 Nginx 的全局应用,主要对应主配置文件的 Main 区块和 Events 区块,这里有很多 Nginx 必须的全局参数配置. Nginx ...

  6. bindpose定义

    根据常识,有: 但根据骨骼动画的定义,又有: 对比两式,可得bindpose的定义: 即骨骼bone的bindpose是:在绑定时刻,将顶点由mesh的局部空间变换到bone的局部空间的变换.

  7. python + django + dwebsocket 实现简单的聊天室

    使用库dwebsocket,具体参考此处 views.py: from dwebsocket.decorators import accept_websocket,require_websocket ...

  8. curl 伪装来路(referer)

    curl -e http://vip.hihi.com http://test.image.ok.com/parcel/201704/1491035345125_971038.jpg 1xx.8x.3 ...

  9. js 对象数组查找元素常用方法

    let the_spec_List_Vaule = res.Data.Spec_List_Vaule.find(function(x) { return x.Spec_Item_List == pro ...

  10. linux每日命令(20):find命令概览

    Linux下find命令在目录结构中搜索文件,并执行指定的操作.Linux下find命令提供了相当多的查找条件,功能很强大.由于find具有强大的功能,所以它的选项也很多,其中大部分选项都值得我们花时 ...