Socket
Socket
Sign inDemoInstall

angular-full-width-to-half-width

Package Overview
Dependencies
1
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

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


Version published
Weekly downloads
2
increased by100%
Maintainers
1
Install size
2.00 MB
Created
Weekly downloads
 

Readme

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

  1. Install via npm or downloaded files:
    1. via npm: npm install --save angular-full-width-to-half-width
    2. via downloaded files
  2. Add angular-full-width-to-half-width to your application's module dependencies.
  3. 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>
    
  4. 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

FAQs

Last updated on 28 May 2020

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