Here are the latest updates

JS Beautifier 1.3.4 and CSS Beautifier 1.3.4 released.New libraries added to our CDN for free use, https://cdn.dotmaui.com/libs.HTML Beautify API-based web tool released.Bug fixes and other minor improvements.

PHP display all errors and warnings

When writing a program in PHP it is a good idea to activate all the errors and warnings that often occur during development. Many hosts have the display of errors disabled, so you can ‘go…

GUID Generator released

We have released a new tool to generate all the free GUIDs you need.It supports text format, XML and JSON. You can also generate up to 100000 GUIDs via RESTful API. Try it now! GUID…

Check if a string is an integer in javascript

Small function in pure Javascript to check if a string is an integer or not. function isInteger(value) { var intRegex = /^\d+$/; return intRegex.test(value); } isInteger(5); // true isInteger(undefined); // false isInteger(“1”); // true isInteger(“1.3”);…