ℹ️ About
ultrax is a simple package make by UltraX, it's simply made to make your coding process faster by some functions, it's not fully released yet only 1 function is available right now!
🔶 Support
In case you have idea's to improve the package, or maybe you found some bugs or you need help, you can contact us from our Discord Server
📥 Installation
To install ultrax package all you need is Node.js.
Then you can open your application terminal and type there:
$ npm install ultrax
➡️ Functions
Right now the package is beta, that mean it is not fully released yet.
The available function is:
- sleep - Function to set timeouts easily
sleep
sleep is a simple function, where is make it easier and faster to make a timeout in your code.
Example:
const ultrax = require('ultrax')
const sleep = ultrax.sleep
console.log('Start!')
sleep(5000)
console.log('5 Seconds passed')