123456789101112131415161718192021222324252627 |
- import defined from './defined.js';
- var definePropertyWorks = (function() {
- try {
- return 'x' in Object.defineProperty({}, 'x', {});
- } catch (e) {
- return false;
- }
- })();
- /**
- * Defines properties on an object, using Object.defineProperties if available,
- * otherwise returns the object unchanged. This function should be used in
- * setup code to prevent errors from completely halting JavaScript execution
- * in legacy browsers.
- *
- * @private
- *
- * @exports defineProperties
- */
- var defineProperties = Object.defineProperties;
- if (!definePropertyWorks || !defined(defineProperties)) {
- defineProperties = function(o) {
- return o;
- };
- }
- export default defineProperties;
|