Skip to content

Installation

bash
  pnpm add @shihongxins/jsutils

Usage

ts
import { ColorUtils } from "@shihongxins/jsutils";
console.log(ColorUtils.hex2rgb("#ff0000"));
// output "rgb(255, 0, 0)"
ts
const SHXsJSUtils = require("@shihongxins/jsutils");
console.log(SHXsJSUtils.DateUtils.nativeFormat(new Date(1678607231000), "YYYY-MM-DD"));
// output 2023-03-12
html
<script src="node_modules/@shihongxins/jsutils/lib/bundle.browser.js"></script>
<script>
  console.log(window.SHXsJSUtils.ElementUtils.isDocumentInFullscreenMode());
  // false
</script>