Returns a function which executes function fn with the given scope obj (so that this keyword refers to obj inside the function code). Has an L.bind shortcut.
Merges the properties of the src object (or multiple objects) into dest object and returns the latter. Has an L.extend shortcut.
Returns a function which always returns false.
Returns the number num rounded to digits decimals.
Converts an object into a parameter URL string, e.g. {a: "foo", b: "bar"} translates to '?a=foo&b=bar'.
Returns true if the given object is an array.
Returns a wrapper around the function fn that makes sure it's called not more often than a certain time interval time, but as fast as possible otherwise (for example, it is used for checking and requesting new tiles while dragging the map), optionally passing the scope (context) in which the function will be called.
Merges the given properties to the options of the obj object, returning the resulting options. See Class options. Has an L.setOptions shortcut.
Trims and splits the string on whitespace and returns the array of parts.
Applies a unique key to the object and returns that key. Has an L.stamp shortcut.
Simple templating facility, creates a string by applying the values of the data object of a form {a: 'foo', b: 'bar', …} to a template string of the form 'Hello {a}, {b}' — in this example you will get 'Hello foo, bar'.
Trims the whitespace from both ends of the string and returns the result.
Data URI string containing a base64-encoded empty GIF image. Used as a hack to free memory from unused images on WebKit-powered mobile devices (by setting image src to this string).