From 135f93e520f4dfb10aa7b5fe9178c3178449e773 Mon Sep 17 00:00:00 2001
From: Jeremy Ashkenas
@@ -1183,6 +1183,16 @@ _("fabio").capitalize(); _.uniqueId('contact_'); => 'contact_104' +
+ escape_.escape(string)
+
+ Escapes a string for insertion into HTML, replacing
+ &, <, >, ", ', and / characters.
+
+_.escape('Curly, Larry & Moe');
+=> "Curly, Larry & Moe"
+
template_.template(templateString, [context])