Socket
Socket
Sign inDemoInstall

c2py

Package Overview
Dependencies
0
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    c2py

JS将中文转化为拼音首字母字符串的小插件


Version published
Maintainers
1
Install size
49.4 kB
Created

Readme

Source

c2py

JS将中文转化为拼音首字母字符串的小插件

fork自Alfred-kai/C2Pin

修改了获取首字母函数(firstChar):

  1. 英文和数字原样输出

  2. 小写转大写

Installation

Direct download

Download the script here and include it (unless you are packaging scripts somehow else):

<script src="/path/to/c2py/index.js"></script>

Package Managers

c2py supports npm and Bower under the name c2py

Import the library

import c2py from 'c2py'

Basic Usage

Transfer Chinese to Pinyin with first letter

c2py.firstChar()

Transfer Chinese to Pinyin with full letter

c2py.fullChar()

Namespace conflicts

If there is any danger of a conflict with the namespace c2py, the noConflict method will allow you to define a new namespace and preserve the original one.

// Assign the c2py api to a different variable and restore the original "window.c2py"
var c2pyCopy = c2py.noConflict();
c2py.firstChar();

Keywords

FAQs

Last updated on 21 Jan 2019

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc