Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

pseudo-localization

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pseudo-localization - npm Package Versions

23

2.4.0

Diff

Changelog

Source

2.4.0

Add Typescript support.

tryggvigy
published 2.3.7 •

tryggvigy
published 2.3.6 •

tryggvigy
published 2.3.5 •

Changelog

Source

2.3.5

  • Add isEnabled boolean to pseudo-localization
  • prevent calling start/stop if pseudo-localization is already enabled/disabled
const [enabled, setEnabled] = React.useState(pseudoLocalization.isEnabled());

<input
  value={enabled}
  onChange={event => {
    const selected = event.target.checked;
    if (selected) {
      setEnabled(true);
      pseudoLocalization.start();
    } else {
      setEnabled(false);
      pseudoLocalization.stop();
      window.location.reload();
    }
  }}
/>;
tryggvigy
published 2.3.4 •

tryggvigy
published 2.3.3 •

tryggvigy
published 2.3.2 •

tryggvigy
published 2.2.2 •

tryggvigy
published 2.1.1 •

tryggvigy
published 2.1.0 •

Changelog

Source

2.1.0

  • Adding CLI interface
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc