OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011-2016 Mathias Bynens <https://mathiasbynens.be/> | 2 * Copyright (C) 2011-2016 Mathias Bynens <https://mathiasbynens.be/> |
3 * Copyright (C) 2016 Eyeo GmbH (Minor modifications for compatibility.) | 3 * Copyright (C) 2016-2017 eyeo GmbH (Minor modifications for compatibility.) |
4 * | 4 * |
5 * Permission is hereby granted, free of charge, to any person obtaining | 5 * Permission is hereby granted, free of charge, to any person obtaining |
6 * a copy of this software and associated documentation files (the | 6 * a copy of this software and associated documentation files (the |
7 * "Software"), to deal in the Software without restriction, including | 7 * "Software"), to deal in the Software without restriction, including |
8 * without limitation the rights to use, copy, modify, merge, publish, | 8 * without limitation the rights to use, copy, modify, merge, publish, |
9 * distribute, sublicense, and/or sell copies of the Software, and to | 9 * distribute, sublicense, and/or sell copies of the Software, and to |
10 * permit persons to whom the Software is furnished to do so, subject to | 10 * permit persons to whom the Software is furnished to do so, subject to |
11 * the following conditions: | 11 * the following conditions: |
12 * | 12 * |
13 * The above copyright notice and this permission notice shall be | 13 * The above copyright notice and this permission notice shall be |
(...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
453 */ | 453 */ |
454 'ucs2': { | 454 'ucs2': { |
455 'decode': ucs2decode, | 455 'decode': ucs2decode, |
456 'encode': ucs2encode | 456 'encode': ucs2encode |
457 }, | 457 }, |
458 'decode': decode, | 458 'decode': decode, |
459 'encode': encode, | 459 'encode': encode, |
460 'toASCII': toASCII, | 460 'toASCII': toASCII, |
461 'toUnicode': toUnicode | 461 'toUnicode': toUnicode |
462 }; | 462 }; |
OLD | NEW |