Except as otherwise noted,
the content of this page is licensed under the Creative Commons
Attribution 3.0 License.
Google Code offered in: English - Español - 日本語 - 한국어 - Português - Pусский - 中文(简体) - 中文(繁體)
Provides general-purpose utility functions.
<static>
String
escapeString(str)
<static>
Object
getFeatureParameters(feature)
<static>
Object
getUrlParameters()
<static>
Boolean
hasFeature(feature)
<static>
makeClosure(scope, callback, var_args)
<static>
registerOnLoadHandler(callback)
<static>
String
unescapeString(str)
<static> String escapeString(str)
String str - The String to escape .
String The escaped String.
<static> Object getFeatureParameters(feature)
String feature - The feature to get parameters for
Object The parameters for the given feature, or null
<static> Object getUrlParameters()
Object Parameters passed into the query string
<static> Boolean hasFeature(feature)
String feature - The feature to test for
Boolean True if the feature is supported
<static> makeClosure(scope, callback, var_args)
Object scope - The execution scope; may be null if there is no
need to associate a specific instance of an object with this
callback
Function callback - The callback to invoke when this is run;
any arguments passed in will be passed after your initial arguments
Object var_args - Initial arguments to be passed to the callback
<static> registerOnLoadHandler(callback)
Function callback - The handler to run
<static> String unescapeString(str)
String str - The String to unescape.
String The unescaped String.