Websocket clock server web interface written in ReactJS/TypeScript
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

utils.js 134B

12345678910
  1. function escape_arg(arg) {
  2. return '"'+arg.replace('"', '\\"')+'"'
  3. }
  4. const util = {
  5. escape_arg:escape_arg,
  6. }
  7. export default util;