123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751 |
- export function skipjs(){
- globalThis.SKIP_JS = 20130821.1536
- globalThis.forceAugment = function( type, name, data ){
- var key
-
- if( typeof name === 'string' && data ){
- type.prototype[ name ] = data
- }
- else if( typeof name === 'object' && !data ){
- for( key in name ) forceAugment( type, key, name[ key ] )
- }
- }
- globalThis.augment = function( type, name, data ){
- var key
-
- if( typeof name === 'string' &&
- type.prototype[ name ] === undefined &&
- data ){
- forceAugment( type, name, data )
- }
- else if( typeof name === 'object' && !data ){
- for( key in name ) augment( type, key, name[ key ] )
- }
- }
- globalThis.forceLearn = function( student, teacher ){
- for( var p in teacher ){
-
- if( teacher.hasOwnProperty( p )){
- if( teacher[ p ].constructor === Object )
- student[ p ] = forceLearn( student[ p ], teacher[ p ])
- else student[ p ] = teacher[ p ]
- }
- }
- return student
- }
- globalThis.learn = function( student, teacher ){
- for( var p in teacher ){
-
- if( teacher.hasOwnProperty( p ) && student[ p ] === undefined ){
- if( teacher[ p ].constructor === Object )
- student[ p ] = learn( student[ p ], teacher[ p ])
- else student[ p ] = teacher[ p ]
- }
- }
- return student
- }
- globalThis.cascade = function(){
- var i, args = Array.prototype.slice.call( arguments )
- for( i = 0; i < args.length; i ++ )
- if( args[ i ] !== undefined ) return args[ i ]
- return false
- }
- globalThis.coinFlip = function(){
- return Math.round( Math.random() )
- }
- globalThis.isNumeric = function( n ){
- return !isNaN( parseFloat( n )) && isFinite( n )
- }
-
- globalThis.E = Math.E
- globalThis.HALF_PI = Math.PI / 2
- globalThis.PI = Math.PI
- globalThis.π = Math.PI
- globalThis.TAU = Math.PI * 2
- globalThis.SQRT2 = Math.SQRT2
- globalThis.SQRT1_2 = Math.SQRT1_2
- globalThis.LN2 = Math.LN2
- globalThis.LN10 = Math.LN10
- globalThis.LOG2E = Math.LOG2E
- globalThis.LOG10E = Math.LOG10E
- globalThis.SECOND = 1000
- globalThis.MINUTE = SECOND * 60
- globalThis.HOUR = MINUTE * 60
- globalThis.DAY = HOUR * 24
- globalThis.WEEK = DAY * 7
- globalThis.MONTH = DAY * 30.4368499
- globalThis.YEAR = DAY * 365.242199
- globalThis.DECADE = YEAR * 10
- globalThis.CENTURY = YEAR * 100
- globalThis.now = function(){ return +Date.now() }
- globalThis.MIN = Number.MIN_VALUE
- globalThis.MAX = Number.MAX_VALUE
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- augment( Number, {
- absolute : function(){
- return Math.abs( this )
- },
- add : function(){
-
- var sum = this
- Array.prototype.slice.call( arguments ).forEach( function( n ){
- sum += n
- })
- return sum
- },
- arcCosine : function(){
- return Math.acos( this )
- },
- arcSine : function(){
- return Math.asin( this )
- },
- arcTangent : function(){
- return Math.atan( this )
- },
- constrain : function( a, b ){
- var higher, lower, c = this
- b = b || 0
- higher = Math.max( a, b )
- lower = Math.min( a, b )
- c = Math.min( c, higher )
- c = Math.max( c, lower )
- return c
- },
- cosine : function(){
- return Math.cos( this )
- },
- degreesToDirection : function(){
- var d = this % 360,
- directions = [ 'N', 'NNE', 'NE', 'NEE', 'E', 'SEE', 'SE', 'SSE', 'S', 'SSW', 'SW', 'SWW', 'W', 'NWW', 'NW', 'NNW', 'N' ]
- return directions[ this.scale( 0, 360, 0, directions.length - 1 ).round() ]
- },
- degreesToRadians : function(){
- return this * Math.PI / 180
- },
- divide : function(){
-
- var sum = this
- Array.prototype.slice.call( arguments ).forEach( function( n ){
- sum /= n
- })
- return sum
- },
- isBetween : function( a, b ){
-
- var
- min = Math.min( a, b ),
- max = Math.max( a, b )
-
- return ( min <= this && this <= max )
- },
- lerp : function( a, b ){
- return a + (b - a ) * this
- },
- log : function( base ){
-
- return Math.log( this ) / ( base === undefined ? 1 : Math.log( base ))
- },
- log10 : function(){
-
- return Math.log( this ) / Math.LN10
- },
- maximum : function( n ){
- return Math.max( this, n )
- },
- minimum : function( n ){
- return Math.min( this, n )
- },
- modulo : function( n ){
- return (( this % n ) + n ) % n
- },
- multiply : function(){
-
- var sum = this
- Array.prototype.slice.call( arguments ).forEach( function( n ){
- sum *= n
- })
- return sum
- },
- normalize : function( a, b ){
- if( a == b ) return 1.0
- return ( this - a ) / ( b - a )
- },
- raiseTo : function( exponent ){
- return Math.pow( this, exponent )
- },
- radiansToDegrees : function(){
- return this * 180 / Math.PI
- },
- rand : function( n ){
- var min, max
- if( n !== undefined ){
- min = Math.min( this, n )
- max = Math.max( this, n )
- return min + Math.floor( Math.random() * ( max - min ))
- }
- return Math.floor( Math.random() * this )
- },
- random : function( n ){
- var min, max
- if( n !== undefined ){
- min = Math.min( this, n )
- max = Math.max( this, n )
- return min + Math.random() * ( max - min )
- }
- return Math.random() * this
- },
- remainder : function( n ){
- return this % n
- },
- round : function( decimals ){
- var n = this
- decimals = decimals || 0
- n *= Math.pow( 10, decimals )
- n = Math.round( n )
- n /= Math.pow( 10, decimals )
- return n
- },
- roundDown : function(){
- return Math.floor( this )
- },
- roundUp : function(){
- return Math.ceil( this )
- },
- scale : function( a0, a1, b0, b1 ){
- var phase = this.normalize( a0, a1 )
- if( b0 == b1 ) return b1
- return b0 + phase * ( b1 - b0 )
- },
- sine : function(){
- return Math.sin( this )
- },
- subtract : function(){
-
- var sum = this
- Array.prototype.slice.call( arguments ).forEach( function( n ){
- sum -= n
- })
- return sum
- },
- tangent : function(){
- return Math.tan( this )
- },
- toArray : function(){
- return [ this.valueOf() ]
- },
- toNumber : function(){
- return this.valueOf()
- },
- toPaddedString : function( digits, decimals ){
-
-
-
-
- var
- i,
- stringed = '' + this,
- padding = ''
- digits = digits || 2
- decimals = decimals || 0
- for( i = stringed.length; i < digits; i ++ )
- padding += '0'
-
- return padding + stringed
- },
- toSignedString : function(){
- var stringed = '' + this
-
- if( this >= 0 ) stringed = '+' + stringed
- return stringed
- },
- toString : function(){
- return ''+ this
- },
-
-
-
-
-
-
-
-
- seconds : function(){
- return this * SECOND
- },
- minutes : function(){
- return this * MINUTE
- },
- hours : function(){
- return this * HOUR
- },
- days : function(){
- return this * DAY
- },
- weeks : function(){
- return this * WEEK
- },
- months : function(){
- return this * MONTH
- },
- years : function(){
- return this * YEAR
- },
- decades : function(){
- return this * DECADE
- },
- centuries : function(){
- return this * CENTURY
- },
- ago : function(){
- return +Date.now() - this
- },
- fromNow : function(){
- return +Date.now() + this
- },
- toDate : function(){
- return new Date( +this )
- },
-
-
-
-
-
- unixToYear : function(){
- return ( new Date( this * 1000 )).getFullYear()
- },
- yearToUnix : function(){
-
-
- return ( new Date( this, 0, 1, 0, 0, 0, 0 )).valueOf() / 1000
- }
- })
- augment( String, {
- capitalize : function(){
- return this.charAt( 0 ).toUpperCase() + this.slice( 1 )
- },
- invert: function(){
- var
- s = '',
- i
- for( i = 0; i < this.length; i ++ ){
- if( this.charAt( i ) === this.charAt( i ).toUpperCase()) s += this.charAt( i ).toLowerCase()
- else s += this.charAt( i ).toUpperCase()
- }
- return s
- },
- isEmpty : function(){
- return this.length === 0 ? true : false
- },
- justifyCenter : function( n ){
- var
- thisLeftLength = Math.round( this.length / 2 ),
- thisRightLength = this.length - thisLeftLength,
- containerLeftLength = Math.round( n / 2 ),
- containerRightLength = n - containerLeftLength,
- padLeftLength = containerLeftLength - thisLeftLength,
- padRightLength = containerRightLength - thisRightLength,
- centered = this
- if( padLeftLength > 0 ){
- while( padLeftLength -- ) centered = ' ' + centered
- }
- else if( padLeftLength < 0 ){
- centered = centered.substr( padLeftLength * -1 )
- }
- if( padRightLength > 0 ){
- while( padRightLength -- ) centered += ' '
- }
- else if( padRightLength < 0 ){
- centered = centered.substr( 0, centered.length + padRightLength )
- }
- return centered
- },
- justifyLeft: function( n ){
- var justified = this
- while( justified.length < n ) justified = justified + ' '
- return justified
- },
- justifyRight: function( n ){
- var justified = this
- while( justified.length < n ) justified = ' ' + justified
- return justified
- },
- multiply : function( n ){
- var i, s = ''
- n = cascade( n, 2 )
- for( i = 0; i < n; i ++ ){
- s += this
- }
- return s
- },
- reverse : function(){
- var i, s = ''
- for( i = 0; i < this.length; i ++ ){
- s = this[ i ] + s
- }
- return s
- },
- size : function(){
- return this.length
- },
- toEntities : function(){
- var i, entities = ''
- for( i = 0; i < this.length; i ++ ){
- entities += '&#' + this.charCodeAt( i ) + ';'
- }
- return entities
- },
- toCamelCase : function(){
-
- var
- split = this.split( /\W+|_+/ ),
- joined = split[ 0 ],
- i
- for( i = 1; i < split.length; i ++ )
- joined += split[ i ].capitalize()
- return joined
- },
- directionToDegrees : function(){
- var
- directions = [ 'N', 'NNE', 'NE', 'NEE', 'E', 'SEE', 'SE', 'SSE', 'S', 'SSW', 'SW', 'SWW', 'W', 'NWW', 'NW', 'NNW', 'N' ],
- i = directions.indexOf( this.toUpperCase() )
- return i >= 0 ? i.scale( 0, directions.length - 1, 0, 360 ) : Number.NaN
- },
- toArray : function(){
- return [ this ]
- },
- toNumber : function(){
- return parseFloat( this )
- },
- toString : function(){
- return this
- },
- toUnderscoreCase : function(){
-
- var underscored = this.replace( /[A-Z]+/g, function( $0 ){
-
- return '_' + $0
- })
- if( underscored.charAt( 0 ) === '_' ) underscored = underscored.substr( 1 )
- return underscored.toLowerCase()
- },
- toUnicode : function(){
- var i, u, unicode = ''
- for( i = 0; i < this.length; i ++ ){
- u = this.charCodeAt( i ).toString( 16 ).toUpperCase()
- while( u.length < 4 ){
- u = '0' + u
- }
- unicode += '\\u' + u
- }
- return unicode
- }
- })
- }
|