PHP Classes

File: js/template-editor/functions.js

Recommend this page to a friend!
  Classes of Saro Carvello   PHP Web MVC Framework   js/template-editor/functions.js   Download  
File: js/template-editor/functions.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Web MVC Framework
MVC framework providing autogenerated MySQL models
Author: By
Last change: Update of js/template-editor/functions.js
Date: 1 year ago
Size: 278 bytes
 

Contents

Class file image Download
String.prototype.repeat = function(count) { if (count < 1) return ''; var result = '', pattern = this.valueOf(); while (count > 1) { if (count & 1) result += pattern; count >>>= 1, pattern += pattern; } return result + pattern; };