uawdijnntqw1x1x1
IP : 216.73.216.110
Hostname : 6.87.74.97.host.secureserver.net
Kernel : Linux 6.87.74.97.host.secureserver.net 4.18.0-553.83.1.el8_10.x86_64 #1 SMP Mon Nov 10 04:22:44 EST 2025 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
emeraadmin
/
www
/
node_modules
/
liftup
/
..
/
map-cache
/
..
/
..
/
4d695
/
readme.md.tar
/
/
home/emeraadmin/public_html/node_modules/ms/readme.md000064400000003765151677350770017010 0ustar00# ms [](https://travis-ci.org/zeit/ms) [](https://spectrum.chat/zeit) Use this package to easily convert various time formats to milliseconds. ## Examples ```js ms('2 days') // 172800000 ms('1d') // 86400000 ms('10h') // 36000000 ms('2.5 hrs') // 9000000 ms('2h') // 7200000 ms('1m') // 60000 ms('5s') // 5000 ms('1y') // 31557600000 ms('100') // 100 ms('-3 days') // -259200000 ms('-1h') // -3600000 ms('-200') // -200 ``` ### Convert from Milliseconds ```js ms(60000) // "1m" ms(2 * 60000) // "2m" ms(-3 * 60000) // "-3m" ms(ms('10 hours')) // "10h" ``` ### Time Format Written-Out ```js ms(60000, { long: true }) // "1 minute" ms(2 * 60000, { long: true }) // "2 minutes" ms(-3 * 60000, { long: true }) // "-3 minutes" ms(ms('10 hours'), { long: true }) // "10 hours" ``` ## Features - Works both in [Node.js](https://nodejs.org) and in the browser - If a number is supplied to `ms`, a string with a unit is returned - If a string that contains the number is supplied, it returns it as a number (e.g.: it returns `100` for `'100'`) - If you pass a string with a number and a valid unit, the number of equivalent milliseconds is returned ## Related Packages - [ms.macro](https://github.com/knpwrs/ms.macro) - Run `ms` as a macro at build-time. ## Caught a Bug? 1. [Fork](https://help.github.com/articles/fork-a-repo/) this repository to your own GitHub account and then [clone](https://help.github.com/articles/cloning-a-repository/) it to your local device 2. Link the package to the global module directory: `npm link` 3. Within the module you want to test your local development instance of ms, just link it to the dependencies: `npm link ms`. Instead of the default one from npm, Node.js will now use your clone of ms! As always, you can run the tests using: `npm test` home/emeraadmin/public_html/node_modules/os-homedir/readme.md000064400000001337151677355370020431 0ustar00# os-homedir [](https://travis-ci.org/sindresorhus/os-homedir) > Node.js 4 [`os.homedir()`](https://nodejs.org/api/os.html#os_os_homedir) [ponyfill](https://ponyfill.com) ## Install ``` $ npm install --save os-homedir ``` ## Usage ```js const osHomedir = require('os-homedir'); console.log(osHomedir()); //=> '/Users/sindresorhus' ``` ## Related - [user-home](https://github.com/sindresorhus/user-home) - Same as this module but caches the result - [home-or-tmp](https://github.com/sindresorhus/home-or-tmp) - Get the user home directory with fallback to the system temp directory ## License MIT © [Sindre Sorhus](https://sindresorhus.com) home/emeraadmin/public_html/node_modules/os-tmpdir/readme.md000064400000001265151677412410020266 0ustar00# os-tmpdir [](https://travis-ci.org/sindresorhus/os-tmpdir) > Node.js [`os.tmpdir()`](https://nodejs.org/api/os.html#os_os_tmpdir) [ponyfill](https://ponyfill.com) Use this instead of `require('os').tmpdir()` to get a consistent behavior on different Node.js versions (even 0.8). ## Install ``` $ npm install --save os-tmpdir ``` ## Usage ```js const osTmpdir = require('os-tmpdir'); osTmpdir(); //=> '/var/folders/m3/5574nnhn0yj488ccryqr7tc80000gn/T' ``` ## API See the [`os.tmpdir()` docs](https://nodejs.org/api/os.html#os_os_tmpdir). ## License MIT © [Sindre Sorhus](https://sindresorhus.com) home/emeraadmin/public_html/node_modules/ionicons/readme.md000064400000013733151701353740020172 0ustar00# Ionicons ### [Announcing Ionicons v4!](https://blog.ionicframework.com/announcing-ionicons-v4/) [Ionicons](http://ionicons.com/) is a completely open-source icon set with 700+ icons crafted for web, iOS, Android, and desktop apps. Ionicons was built for [Ionic Framework](https://ionicframework.com/), so icons have both Material Design and iOS versions. When used with Ionic, the `ion-icon` component will automatically use the correct version based on your platform. Additionally, when used outside of Ionic, both `ios` and `md` platforms can be chosen by the application. Note: All brand icons are trademarks of their respective owners. The use of these trademarks does not indicate endorsement of the trademark holder by Drifty, nor vice versa. Visit [ionicons.com](http://ionicons.com) and check out the search feature, which has keywords identifying common icon names and styles. For example, if you search for “arrow” we call up every icon that could possibly be used as an arrow. We intend for this icon pack to be used with [Ionic](http://ionicframework.com/), but it’s by no means limited to it. Use them wherever you see fit, personal or commercial. They are free to use and licensed under [MIT](http://opensource.org/licenses/MIT). ## Using the Web Component The Iconicons Web Component is an easy and performant way to use Ionicons in your app. The component will dynamically load an SVG for each icon, so your app is only requesting the icons that you need. Also note that only visible icons are loaded, and icons which are "below the fold" and hidden from the user's view do not make fetch requests for the svg resource. ### Installation If you're using [Ionic Framework](https://ionicframework.com/), Ionicons is packaged by default, so no installation is necessary. Want to use Ionicons without Ionic Framework? Place the following `<script>` near the end of your page, right before the closing </body> tag, to enable them. ``` <script src="https://unpkg.com/ionicons@4.2.2/dist/ionicons.js"></script> ``` ### Basic usage To use a built-in icon from the Ionicons package, populate the `name` attribute on the ion-icon component: ``` <ion-icon name="heart"></ion-icon> ``` To use a custom SVG, provide its url in the `src` attribute to request the external SVG file. The `src` attribute works the same as `<img src="...">` in that the url must be accessible from the webpage that's making a request for the image. Additionally, the external file can only be a valid svg and does not allow scripts or events within the svg element. ``` <ion-icon src="/path/to/externa/file.svg"></ion-icon> ``` ### Platform specific icons Many icons have both Material Design and iOS versions to provide Platform Continuity for users. Platform Continuity means that by default, ionicons running on iOS (Apple products such as iPhone and iPad) will display `ios` styled icons. Alternatively, ionicons running on devices with Material Design theme (commonly seen on Android devices) will see the `md` styled icons. ### Platform Continuity Within Ionic Apps Ionic will automatically use the correct version based on the platform. Note that this feature will only automatically kick-in for Ionic apps. When being used outside of an Ionic app, please see the "Outside Ionic App" section below. To specify the icon for each platform, use the `md` and `ios` attributes and provide the platform specific icon name. ``` <ion-icon ios="ios-heart" md="md-heart"></ion-icon> ``` ### Platform Continuity Outside Ionic Apps When using Ionicons without the Ionic Framework, the icon will default to the Material Design icon style. To specify the non-default icon style, add a platform prefix to the `name` attribute. ``` <ion-icon name="ios-heart"></ion-icon> <ion-icon name="md-heart"></ion-icon> ``` ### Icon sizes To specify the icon size, you can use the size attribute for our pre-defined font sizes. ``` <ion-icon size="small"></ion-icon> <ion-icon size="large"></ion-icon> ``` Or you can set a specific size by applying the `font-size` CSS property on the `ion-icon` component. It's recommended to use pixel sizes that are a multiple of 8 (8, 16, 32, 64, etc.) ``` ion-icon { font-size: 64px; } ``` ## Using the Font Icon The font icon is compatible with previous versions of Ionicons. If you're using Ionicons for the first time we strongly recommend using the `ion-icon` web component instead. An advantage to the font icon file is that all of the icons are in one file. A disadvantage to the font icon file is that all of the icons are in one file. Additionally, large font files have a negative impact on a webpage's time to first paint. In most cases it may be better to request a small number of svgs using the web component method. A bonus with the web component is that it uses Intersection Observer to only request icons which are viewable by the users (icons above the fold). However, if a webpage has to show many icons at once (such as this website's homepage which is showing 700+ icons on one page), the font icon may be a better choice. ### Installation To embed the Ionicons font icon, copy this code into the `<head>` of the HTML document. ``` <link href="https://unpkg.com/ionicons@4.2.2/dist/css/ionicons.min.css" rel="stylesheet"> ``` ### Basic usage Use the icon index to look up the name of the icon you want to use. The icon's CSS class name will be prefixed with ion-, followed by the platform attribute md-, ios- or logo- and completed wth the icon name. ``` <i class="icon ion-md-heart"></i> ``` ## License Ionicons is licensed under the [MIT license](http://opensource.org/licenses/MIT). ## Related * [Ionicons Homepage](http://ionicons.com/) * [Ionic Framework](https://ionicframework.com/) * [Ionic Worldwide Slack](http://ionicworldwide.herokuapp.com/) * [Ionic Forum](https://forum.ionicframework.com/) * [Stencil](https://stenciljs.com/) * [Stencil Worldwide Slack](https://stencil-worldwide.slack.com) home/emeraadmin/public_html/node_modules/screenfull/readme.md000064400000015530151701362770020513 0ustar00# screenfull.js > Simple wrapper for cross-browser usage of the JavaScript [Fullscreen API](https://developer.mozilla.org/en/DOM/Using_full-screen_mode), which lets you bring the page or any element into fullscreen. Smoothens out the browser implementation differences, so you don't have to. **This package is feature complete. No new changes will be accepted.** --- <p align="center"><b>🔥 Want to strengthen your core JavaScript skills and master ES6?</b><br>I would personally recommend this awesome <a href="https://ES6.io/friend/AWESOME">ES6 course</a> by Wes Bos.</p> --- ### [Demo](https://sindresorhus.com/screenfull.js) ### [Check out my other projects](https://github.com/sindresorhus?tab=repositories) ## Install Only 0.7 kB gzipped. Download the [production version][min] or the [development version][max]. [min]: https://github.com/sindresorhus/screenfull.js/raw/gh-pages/dist/screenfull.min.js [max]: https://github.com/sindresorhus/screenfull.js/raw/gh-pages/dist/screenfull.js ``` $ npm install --save screenfull ``` Also available on [cdnjs](https://cdnjs.com/libraries/screenfull.js). ## Why? ### Screenfull ```js if (screenfull.enabled) { screenfull.request(); } ``` ### Vanilla JavaScript ```js document.fullscreenEnabled = document.fullscreenEnabled || document.mozFullScreenEnabled || document.documentElement.webkitRequestFullScreen; function requestFullscreen(element) { if (element.requestFullscreen) { element.requestFullscreen(); } else if (element.mozRequestFullScreen) { element.mozRequestFullScreen(); } else if (element.webkitRequestFullScreen) { element.webkitRequestFullScreen(Element.ALLOW_KEYBOARD_INPUT); } } if (document.fullscreenEnabled) { requestFullscreen(document.documentElement); } // Actually it's more if you want it to work in Safari, but let's not go there... ``` ## Support [Supported browsers](http://caniuse.com/fullscreen) ## Documentation ### Examples #### Fullscreen the page ```js document.getElementById('button').addEventListener('click', () => { if (screenfull.enabled) { screenfull.request(); } else { // Ignore or do something else } }); ``` #### Fullscreen an element ```js const el = document.getElementById('target'); document.getElementById('button').addEventListener('click', () => { if (screenfull.enabled) { screenfull.request(el); } }); ``` #### Fullscreen an element with jQuery ```js const target = $('#target')[0]; // Get DOM element from jQuery collection $('#button').on('click', () => { if (screenfull.enabled) { screenfull.request(target); } }); ``` #### Toggle fullscreen on a image with jQuery ```js $('img').on('click', event => { if (screenfull.enabled) { screenfull.toggle(event.target); } }); ``` #### Detect fullscreen change ```js if (screenfull.enabled) { screenfull.on('change', () => { console.log('Am I fullscreen?', screenfull.isFullscreen ? 'Yes' : 'No'); }); } ``` Remove listeners with: ```js screenfull.off('change', callback); ``` #### Detect fullscreen error ```js if (screenfull.enabled) { screenfull.on('error', event => { console.error('Failed to enable fullscreen', event); }); } ``` See the [demo](https://sindresorhus.com/screenfull.js) for more examples, and view the source. #### Fullscreen an element with Angular.js You can use the [Angular.js binding](https://github.com/hrajchert/angular-screenfull) to do something like: ```html <div ngsf-fullscreen> <p>This is a fullscreen element</p> <button ngsf-toggle-fullscreen>Toggle fullscreen</button> </div> ``` #### Fullscreen the page with Angular 2 ```typescript import {Directive, HostListener} from '@angular/core'; import * as screenfull from 'screenfull'; @Directive({ selector: '[toggleFullscreen]' }) export class ToggleFullscreenDirective { @HostListener('click') onClick() { if (screenfull.enabled) { screenfull.toggle(); } } } ``` ```html <button toggleFullscreen>Toggle fullscreen<button> ``` ### Methods #### .request() Make an element fullscreen. Accepts a DOM element. Default is `<html>`. If called with another element than the currently active, it will switch to that if it's a decendant. If your page is inside an `<iframe>` you will need to add a `allowfullscreen` attribute (+ `webkitallowfullscreen` and `mozallowfullscreen`). Keep in mind that the browser will only enter fullscreen when initiated by user events like click, touch, key. #### .exit() Brings you out of fullscreen. #### .toggle() Requests fullscreen if not active, otherwise exits. #### .on(event, function) Events: `change` `error` Add a listener for when the browser switches in and out of fullscreen or when there is an error. #### .off(event, function) Remove a previously registered event listener. #### .onchange(function) Alias for `.on('change', function)` #### .onerror(function) Alias for `.on('error', function)` ### Properties #### .isFullscreen Returns a boolean whether fullscreen is active. #### .element Returns the element currently in fullscreen, otherwise `null`. #### .enabled Returns a boolean whether you are allowed to enter fullscreen. If your page is inside an `<iframe>` you will need to add a `allowfullscreen` attribute (+ `webkitallowfullscreen` and `mozallowfullscreen`). #### .raw Exposes the raw properties (prefixed if needed) used internally: `requestFullscreen`, `exitFullscreen`, `fullscreenElement`, `fullscreenEnabled`, `fullscreenchange`, `fullscreenerror` ## FAQ ### How can I navigate to a new page when fullscreen? That's not supported by browsers for security reasons. There is, however, a dirty workaround. Create a seamless iframe that fills the screen and navigate to the page in that instead. ```js $('#new-page-btn').click(() => { const iframe = document.createElement('iframe') iframe.setAttribute('id', 'external-iframe'); iframe.setAttribute('src', 'http://new-page-website.com'); iframe.setAttribute('frameborder', 'no'); iframe.style.position = 'absolute'; iframe.style.top = '0'; iframe.style.right = '0'; iframe.style.bottom = '0'; iframe.style.left = '0'; iframe.style.width = '100%'; iframe.style.height = '100%'; $(document.body).prepend(iframe); document.body.style.overflow = 'hidden'; }); ``` ## Resources - [Using the Fullscreen API in web browsers](http://hacks.mozilla.org/2012/01/using-the-fullscreen-api-in-web-browsers/) - [MDN - Fullscreen API](https://developer.mozilla.org/en/DOM/Using_full-screen_mode) - [W3C Fullscreen spec](http://dvcs.w3.org/hg/fullscreen/raw-file/tip/Overview.html) - [Building an amazing fullscreen mobile experience](http://www.html5rocks.com/en/mobile/fullscreen/) ## License MIT © [Sindre Sorhus](https://sindresorhus.com) home/emeraadmin/public_html/node_modules/object-assign/readme.md000064400000002736151701366120021076 0ustar00# object-assign [](https://travis-ci.org/sindresorhus/object-assign) > ES2015 [`Object.assign()`](http://www.2ality.com/2014/01/object-assign.html) [ponyfill](https://ponyfill.com) ## Use the built-in Node.js 4 and up, as well as every evergreen browser (Chrome, Edge, Firefox, Opera, Safari), support `Object.assign()` :tada:. If you target only those environments, then by all means, use `Object.assign()` instead of this package. ## Install ``` $ npm install --save object-assign ``` ## Usage ```js const objectAssign = require('object-assign'); objectAssign({foo: 0}, {bar: 1}); //=> {foo: 0, bar: 1} // multiple sources objectAssign({foo: 0}, {bar: 1}, {baz: 2}); //=> {foo: 0, bar: 1, baz: 2} // overwrites equal keys objectAssign({foo: 0}, {foo: 1}, {foo: 2}); //=> {foo: 2} // ignores null and undefined sources objectAssign({foo: 0}, null, {bar: 1}, undefined); //=> {foo: 0, bar: 1} ``` ## API ### objectAssign(target, [source, ...]) Assigns enumerable own properties of `source` objects to the `target` object and returns the `target` object. Additional `source` objects will overwrite previous ones. ## Resources - [ES2015 spec - Object.assign](https://people.mozilla.org/~jorendorff/es6-draft.html#sec-object.assign) ## Related - [deep-assign](https://github.com/sindresorhus/deep-assign) - Recursive `Object.assign()` ## License MIT © [Sindre Sorhus](https://sindresorhus.com)
/home/emeraadmin/www/node_modules/liftup/../map-cache/../../4d695/readme.md.tar