UNPKG

miniapp-web-jsapi

Version:

JSAPI/View adapter for miniprogram running on the web

9 lines 205 B
export default function entries(obj) { var result = []; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { result.push([key, obj[key]]); } } return result; }