puvox-library 1.0.70 → 1.0.71
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/library_standard.js +4 -7
- package/package.json +1 -1
    
        package/library_standard.js
    CHANGED
    
    | @@ -15,8 +15,7 @@ | |
| 15 15 | 
             
             *
         | 
| 16 16 | 
             
            */
         | 
| 17 17 |  | 
| 18 | 
            -
             | 
| 19 | 
            -
            {
         | 
| 18 | 
            +
            function PUVOX_LIBRARY() { return {
         | 
| 20 19 | 
             
            	// ########## ARRAY ########## //
         | 
| 21 20 | 
             
            	arrayValue(obj_arr, key, default_){
         | 
| 22 21 | 
             
            		return (obj_arr && key in obj_arr ? obj_arr[key] : default_);
         | 
| @@ -3499,17 +3498,15 @@ const puvox_library = | |
| 3499 3498 | 
             
            	seconds() { return Math.floor (Date.now () / 1000);},
         | 
| 3500 3499 | 
             
            	// endregion: ####### from CCXT ##########
         | 
| 3501 3500 |  | 
| 3502 | 
            -
             | 
| 3503 | 
            -
             | 
| 3504 | 
            -
            };
         | 
| 3501 | 
            +
            }; }
         | 
| 3505 3502 |  | 
| 3506 3503 |  | 
| 3507 3504 | 
             
            // export to outside world
         | 
| 3508 3505 | 
             
            if (typeof module != 'undefined' && module.hasOwnProperty('exports')) {
         | 
| 3509 | 
            -
            	module.exports =  | 
| 3506 | 
            +
            	module.exports = PUVOX_LIBRARY;
         | 
| 3510 3507 | 
             
            }
         | 
| 3511 3508 | 
             
            if (typeof window != 'undefined') {
         | 
| 3512 | 
            -
            	window['PuvoxLibrary'] =  | 
| 3509 | 
            +
            	window['PuvoxLibrary'] = PUVOX_LIBRARY;
         | 
| 3513 3510 | 
             
            }
         | 
| 3514 3511 |  | 
| 3515 3512 | 
             
            // export default puvox_library;
         |