New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

asian-regexps

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

asian-regexps

Chinese, Japanese, Korean convenient RegExp ESM Node.js module

  • 4.1.3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
63
increased by90.91%
Maintainers
1
Weekly downloads
 
Created
Source

asian-regexps

Chinese, Japanese, Korean convenient RegExp npm package.

Installation

npm i asian-regexps

Usage

CommonJS

const { isKorean } = require('asian-regexps')
isKorean('한글') // true

ES6/ES2015 Modules AND TypeScript

import { isKorean } from 'asian-regexps'
isKorean('한글') // true

Browser

<script type="module">
  import { isKorean } from '/node_modules/asian-regexps/asian-regexps-esm.js'
  isKorean('한글') // true
</script>

API

functions

  • isChinese(string)
  • isFullChinese(string)
  • isJapanese(string)
  • isFullJapanese(string)
  • isKorean(string)
  • isFullKorean(string)

regexps

  • chineseRegExp
  • japaneseRegExp
  • koreanRegExp

Keywords

FAQs

Package last updated on 26 Jan 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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