Skip to content

Instantly share code, notes, and snippets.

View PandelisZ's full-sized avatar
:shipit:
🔥🔥🔥 Taking working code and making it un-working 🔥🔥🔥🔥

Pandelis Zembashis PandelisZ

:shipit:
🔥🔥🔥 Taking working code and making it un-working 🔥🔥🔥🔥
View GitHub Profile
@PandelisZ
PandelisZ / ko.utils.signatures.js
Created July 18, 2017 13:27 — forked from hyle/ko.utils.signatures.js
KnockoutJS utils (ko.utils) signatures
// knockout 2.2.1
ko.utils.arrayFilter = function (array, predicate) { /* .. */ }
ko.utils.arrayFirst = function (array, predicate, predicateOwner) { /* .. */ }
ko.utils.arrayForEach = function (array, action) { /* .. */ }
ko.utils.arrayGetDistinctValues = function (array) { /* .. */ }
@PandelisZ
PandelisZ / ko.utils.3.4.0.signatures.js
Created July 18, 2017 13:28 — forked from hyle/ko.utils.3.4.0.signatures.js
KnockoutJS 3.4.0 utils (ko.utils) signatures
// knockout 3.4.0
ko.utils.addOrRemoveItem = function (array, value, included) { /* .. */ }
ko.utils.anyDomNodeIsAttachedToDocument = function (nodes) { /* .. */ }
ko.utils.arrayFilter = function (array, predicate) { /* .. */ }
ko.utils.arrayFirst = function (array, predicate, predicateOwner) { /* .. */ }