|
Last change
on this file since e4c61dd was e4c61dd, checked in by istevanoska <ilinastevanoska@…>, 6 months ago |
|
Prototype 1.1
|
-
Property mode
set to
100644
|
|
File size:
733 bytes
|
| Line | |
|---|
| 1 | "use strict";
|
|---|
| 2 |
|
|---|
| 3 | // Update this array if you add/rename/remove files in this directory.
|
|---|
| 4 | // We support Browserify by skipping automatic module discovery and requiring modules directly.
|
|---|
| 5 | var modules = [
|
|---|
| 6 | require("./internal"),
|
|---|
| 7 | require("./utf32"),
|
|---|
| 8 | require("./utf16"),
|
|---|
| 9 | require("./utf7"),
|
|---|
| 10 | require("./sbcs-codec"),
|
|---|
| 11 | require("./sbcs-data"),
|
|---|
| 12 | require("./sbcs-data-generated"),
|
|---|
| 13 | require("./dbcs-codec"),
|
|---|
| 14 | require("./dbcs-data"),
|
|---|
| 15 | ];
|
|---|
| 16 |
|
|---|
| 17 | // Put all encoding/alias/codec definitions to single object and export it.
|
|---|
| 18 | for (var i = 0; i < modules.length; i++) {
|
|---|
| 19 | var module = modules[i];
|
|---|
| 20 | for (var enc in module)
|
|---|
| 21 | if (Object.prototype.hasOwnProperty.call(module, enc))
|
|---|
| 22 | exports[enc] = module[enc];
|
|---|
| 23 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.