# md5

hasKey 检查一个对象中是否存在属性

# 代码演示

# Demo

import { hasKey } from 'm-utilsdk/index';

let obj={
  a:'1',
  b:'2'
}
hasKey(obj,a); // -> true