PHP Classes

File: CoffeeCMS/contents/themes/cfnews/assets/moment/src/lib/utils/some.js

Recommend this page to a friend!
  Classes of James Brows   Coffee CMS   CoffeeCMS/contents/themes/cfnews/assets/moment/src/lib/utils/some.js   Download  
File: CoffeeCMS/contents/themes/cfnews/assets/moment/src/lib/utils/some.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Coffee CMS
Content management system using MVC based themes
Author: By
Last change:
Date: 2 years ago
Size: 383 bytes
 

Contents

Class file image Download
var some; if (Array.prototype.some) { some = Array.prototype.some; } else { some = function (fun) { var t = Object(this); var len = t.length >>> 0; for (var i = 0; i < len; i++) { if (i in t && fun.call(this, t[i], i, t)) { return true; } } return false; }; } export { some as default };