Object.observe icon indicating copy to clipboard operation
Object.observe copied to clipboard

Object.observe polyfill/shim trying to be compliant

Results 5 Object.observe issues
Sort by recently updated
recently updated
newest added

I'm not sure if this is an issue for here. if i put YuzuJS/setImmediate before jdarling/Object.observe. then my cpu usage will rush a high level and keeping there. (safari 7.0.6...

Hey, I'm looking for good Object.observable polyfills and this looks like the most minimal and clean solution. Couple of questions: - Any other good implementations out there (that you prefer)?...

This is a fix for the following use case: If the callback passed to the `Observer` is itself changing some of the `object`'s properties, further updates are added to the...

To deliver the change records, this polyfill uses the following API: ``` javascript var obj = {}; var changeHandler = function(changes) { console.log(changes); }; Object.observe(obj, changeHandler); obj.test = 5; Object.getNotifier(obj).deliverChangeRecords();...

enhancement

Due to how Object.observe is implemented the current test suite fails on any browser that does not have a native implementation of Object.observe. All tests need to give Object.observe opportunity...

enhancement