js函数 eql,equal,equalp
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的更多相关文章
- api日常总结:前端常用js函数和CSS常用技巧
我的移动端media html{font-size:10px} @media screen and (min-width:321px) and (max-width:375px){html{font- ...
- 3.3 js函数
1.函数语法: 函数声明的方式:function 函数名(参数1,参数2-){//函数体;}函数调用:函数名(参数1,参数2-); 函数内不一定都指定返回值. 如果需要指定返回值,可用 return ...
- Js函数function基础理解
正文:我们知道,在js中,函数实际上是一个对象,每个函数都是Function类型的实例,并且都与其他引用类型一样具有属性和方法.因此,函数名实际上是指向函数对象的指针,不与某个函数绑定.在常见的两种定 ...
- js函数表达式和函数声明的区别
我们已经知道,在任意代码片段外部添加包装函数,可以将内部的变量和函数定义"隐 藏"起来,外部作用域无法访问包装函数内部的任何内容. 例如: var a = 2; function ...
- 通用js函数集锦<来源于网络> 【二】
通用js函数集锦<来源于网络> [二] 1.数组方法集2.cookie方法集3.url方法集4.正则表达式方法集5.字符串方法集6.加密方法集7.日期方法集8.浏览器检测方法集9.json ...
- 通用js函数集锦<来源于网络/自己> 【一】
通用js函数集锦<来源于网络/自己>[一] 1.返回一个全地址2.cookie3.验证用户浏览器是否是微信浏览器4.验证用户浏览器是否是微博内置浏览器5.query string6.验证用 ...
- 100多个基础常用JS函数和语法集合大全
网站特效离不开脚本,javascript是最常用的脚本语言,我们归纳一下常用的基础函数和语法: 1.输出语句:document.write(""); 2.JS中的注释为//3.传统 ...
- JS函数
1.document.write(""); 输出语句2.JS中的注释为//3.传统的HTML文档顺序是:document->html->(head,body)4.一个浏 ...
- js函数和运算符
函数是由事件驱动或者它被调用时执行可重复使用的代码块. <script> function myFunction(){ Alert(“hello World!”): } </scri ...
随机推荐
- windows server 2008 R2安装图片浏览器/照片查看器方法
有用户的电脑安装了windows server 2008 R2,浏览大量图片时很不方便,因为系统中没有照片查看器或图片浏览器.其实,win2008 R2是有照片查看器的,只是默认情况下没有开启.参考以 ...
- Apktool编译找不到“keyboardNavigationCluster”
喜欢用使用apktool来反编译.编译安卓程序,然后用其他工具来分析.签名.优化等,它比其他工具的优点是不易出错. 命令 反编译命令:apktool d -f XX.apk -o 反编译输出的目录(如 ...
- 迁移ORACLE_HOME引发的登录sqlplus无法加载类库错误
在10g以后,一般情况下环境变量中没有必要设置LD_LIBRARY_PATH,但是一旦将ORACLE_HOME迁移到其他目录,则环境变量中还需要添加这个变量. Linux和Unix支持TAR方式迁移O ...
- SqlServer 2008的tempdb数据文件大小暴增处理
tempdb数据文件暴增,导致服务器磁盘空间被耗尽! 1.查看tempdb的使用分配情况 use tempdb go SELECT top 10 t1.session_id, t1.internal_ ...
- android用TextView实现跑马灯效果
今天搞啦很久,其实很简单,就加几个属性就可以啦! 图如下 : 有的说要重写TextView方法,有的说要设置固定长度,但是我没重写也没有设置固定长度也弄出来啦!跑在2.3.3的手机上面.就是不知道其他 ...
- [svc]sed&awk过滤行及sed常用例子
- sed过滤行 sed '2p' sed '2,5p' sed '2p;3p;4p' - awk过滤行 awk 'NR==2' awk 'NR>=2 && NR <=3' ...
- Socket网络编程--简单Web服务器(4)
上一小节已经实现了对图片的传输,接下来就是判断文件是否为js,css,png等格式.我们增加一个函数用于判断格式 int WebServer::get_filetype(char *type,char ...
- 《深入应用C++11:代码优化与工程级应用》勘误表
<深入应用C++11:代码优化与工程级应用>勘误表,会不断更新,欢迎读者留言或发邮件(cpp11book@163.com)给我提出宝贵意见. 1.第7.3节目录final和override ...
- 安装astrixx firefox插件
以上步骤适用于firefox 45.0.1. 将astrixx的firefox插件下载到本地,这个插件的下载地址很难找...全名是astrixx proxy switcher about:config ...
- 【转】css3实现文字闪烁,改变透明度
<style> @-webkit-keyframes shake{ 0%{ opacity: 1; } 50%{ opacity: 0.5; } 100%{ opacity: 1; } } ...