$l('body');
$('body');
$l('#home');
$l.id('home');
$l.idc('home');
$('#home');
$l('.container');
$l.dom.selectByClass('container');
$('.container');
$l.each([52, 97], function(index, value) { console.log(index + ': ' + value); });
$l.aeach([52, 97], function(index, value) { console.log(index + ': ' + value); });
$.each([52, 97], function(index, value) { console.log(index + ': ' + value); });
$l.each({a: 1, b: 2}, function(index, value) { console.log(index + ': ' + value); });
$.each({a: 1, b: 2}, function(index, value) { console.log(index + ': ' + value); });
$l.map(['eser', 'ozvataf'], function(value) { return value; });
$l.amap(['eser', 'ozvataf'], function(value) { return value; });
$.map(['eser', 'ozvataf'], function(value) { return value; });
$l.map({a: 'eser', b: 'ozvataf'}, function(value) { return value; });
$.map({a: 'eser', b: 'ozvataf'}, function(value) { return value; });
$l.dom.createElement('DIV', { class: 'x' }, 'y');
$l.dom.create('<div class="x">y</div>');
$('<div class="x">y</div>');
var div = $l.dom.createElement('DIV'); $l.dom.append(div, 'appended'); $l.dom.prepend(div, 'prepended'); $l.dom.clear(div); $l.dom.remove(div);
$('<div>') .append('appended') .prepend('prepended') .empty() .remove();
benchmarks.html
and placing your values into assets/js/benchmarks.js
file.