zipavlin / toascii-js

Replace non-ascii characters with ascii alternatives. This is a modification of fold-to-ascii.js

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MODIFICATION

https://github.com/galerija/tolatin-js

This is a modification of fold-to-ascii.js (https://github.com/mplatt/fold-to-ascii-js). Original (fold-to-ascii) functions were combined and characters database was limited to lowercase characters only and lower/uppercase transformation is used instead. All credit goes to the original author.

USAGE

This script can be used as a function or a string method. Usage is pretty straight forward:

// as function
toAscii(string);

// as method
string.toAscii();

ORIGINAL LICENSE AND INFO

https://github.com/mplatt/fold-to-ascii-js

This is a JavaScript port of the Apache Lucene ASCII Folding Filter.

The Apache Lucene ASCII Folding Filter is licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

This port uses an example from the Mozilla Developer Network published prior to August 20, 2010

fixedCharCodeAt is licencesed under the MIT License (MIT)

Copyright (c) 2013 Mozilla Developer Network and individual contributors

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

Replace non-ascii characters with ascii alternatives. This is a modification of fold-to-ascii.js

License:Other


Languages

Language:JavaScript 99.1%Language:HTML 0.9%