Socket
Book a DemoInstallSign in
Socket

angular-full-width-to-half-width

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular-full-width-to-half-width

Full-width to half-width characters service and filters for AngularJS

latest
Source
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

npm version GitHub issues GitHub license

angular-full-width-to-half-width

Full-width to half-width character service and filters for AngularJS

Description

This is a service for AngularJS that converts full-width Unicode characters to their half-width counterparts. This service can be used as is, or through the filter fullWidthToHalfWidth.

At the moment the service only converts the characters in the Unicode range 0xFF00 - 0xFF5E. I am planning on adding the ability to convert the rest of the characters in the U+FF00 - U+FFEF block, but this will take time.

Usage

  • Install via npm or downloaded files:
    • via npm: npm install --save angular-full-width-to-half-width
    • via downloaded files
  • Add angular-full-width-to-half-width to your application's module dependencies.
  • Include dependencies and angular-full-width-to-half-width in your HTML.
    • When using npm
    <script src="node_modules/angular-full-width-to-half-width/dist/angular-full-width-to-half-width.min.js"></script>
    
    • When using downloaded files
    <script src="YOUR_PATH/angular-full-width-to-half-width.min.js"></script>
    
  • Use the angular filter fullWidthToHalfWidth, or use the angular service fullWidthToHalfWidthService.

Documentation

Services

convertToHalfWidthService

convertToHalfWidth

Converts the full-width characters in a string to half-width counterparts.

  • @param {string} value The string containing characters to convert to half-width.
  • @return {string} A string containing half-width characters converted from the original value.

Filters

fullWidthToHalfWidth

Converts the full-width characters in a string to half-width counterparts.

  • @param {string} input The string containing characters to convert to half-width.
  • @return {string} A string containing half-width characters converted from the original value.

Example

HTML

<p>
  {{"hえllo world!" | fullWidthToHalfWidth }} : hえllo world!
</p>
<p>
  {{"What, is this?" | fullWidthToHalfWidth}} : What, is this?
</p>

Result:

<p>
  hえllo world! : hえllo world!
</p>
<p>
  What, is this? : What, is this?
</p>

Javascript:

angular.module('app', ['angular-full-width-to-half-width']);

angular.module('app')
    .controller('appController', function ($scope, $filter) {
      $scope.javascriptTest = $filter('fullWidthToHalfWidth')("Hello world!");
      $scope.javascriptExample = $filter('fullWidthToHalfWidth')("hえllo world!");
    });

Result:

<p>
  Hello world! : $scope.javascriptTest Hello world!
</p>
<p>
  hえllo world! : $scope.javascriptString hえllo world!
</p>

LICENSE

MIT

Keywords

cjk

FAQs

Package last updated on 28 May 2020

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

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.