0a5ab058a6
- Angular 12 application with PrimeNG components - 5 existing Cypress e2e test suites - SCSS styling with BEM naming convention - i18n support (10 languages) - Leaflet map integration - Complete component hierarchy and routing structure This baseline will be used for Angular → React migration.
28 lines
469 B
JavaScript
28 lines
469 B
JavaScript
// Copyright 2011 Mark Cavage <mcavage@gmail.com> All rights reserved.
|
|
|
|
var errors = require('./errors');
|
|
var types = require('./types');
|
|
|
|
var Reader = require('./reader');
|
|
var Writer = require('./writer');
|
|
|
|
|
|
// --- Exports
|
|
|
|
module.exports = {
|
|
|
|
Reader: Reader,
|
|
|
|
Writer: Writer
|
|
|
|
};
|
|
|
|
for (var t in types) {
|
|
if (types.hasOwnProperty(t))
|
|
module.exports[t] = types[t];
|
|
}
|
|
for (var e in errors) {
|
|
if (errors.hasOwnProperty(e))
|
|
module.exports[e] = errors[e];
|
|
}
|