Assign the enumerable es6 Symbol properties from one or more objects to the first object passed on the arguments. Can be used as a supplement to other extend, assign or merge methods as a polyfill for the Symbols part of the es6 Object.assign method.
true
if little endian, false
if big endian
RFC3986: https://tools.ietf.org/html/rfc3986
字符AZ、az、09以及字符 -、_、.、 不编码。
其它字符编码成%XY的格式,其中XY是字符对应ASCII码的16进制。示例:半角双引号(")对应%22。
扩展的UTF-8字符,编码成%XY%ZA…的格式。
空格( )编码成 %20,而不是加号(+)。
该编码方式与application/x-www-form-urlencoded MIME格式编码算法相似,但又有所不同。
encodeURIComponent: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURIComponent Not Escaped: A-Z a-z 0-9 - _ . ! ~ * ' ( )
!*()' %21 %2A %28 %29 %27
default false
Returns a random number between min (inclusive) and max (exclusive)
Returns a random integer between min (inclusive) and max (inclusive) Using Math.round() will give you a non-uniform distribution!
Warning: This algorithm is now considered vulnerable and should not be used.
Module wrapper of @substack's caller.js
Normalize path segment separator
remove trailing /
and \
from path
Generated using TypeDoc
Deeply assign the values of all enumerable-own-properties and symbols f rom one or more source objects to a target object. Returns the target object.
1.1.15
2018-11-02
https://github.com/jonschlinkert/assign-deep/blob/master/index.js