UNPKG

@tdb/web

Version:

Common condiguration for serving a web-site and testing web-based UI components.

18 lines (14 loc) 290 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = shallowEquals; function shallowEquals(a, b) { for (var i in a) { if (b[i] !== a[i]) return false; } for (var _i in b) { if (b[_i] !== a[_i]) return false; } return true; }