Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
80681 views
1
$(document).ready(function() {
2
3
module("String extensions");
4
5
test("underscore not included", function() {
6
raises(function() { _("foo") }, /TypeError/);
7
});
8
9
test("provides standalone functions", function() {
10
equals(typeof _.str.trim, "function");
11
});
12
});
13
14