mirror of
https://github.com/zhigang1992/angular.js.git
synced 2026-01-13 08:59:54 +08:00
* update package with new services and computeId config * generateIndexPagesProcessor was not using log * use StringMap not ES6-shim Map in errorNamespaceMap * remove unused dependencies from generateErrorDocsProcessor * ensure generatePagesDataProcessor adds its doc to the collection * debugDumpProcessor was moved to dgeni-packages
10 lines
207 B
JavaScript
10 lines
207 B
JavaScript
"use strict";
|
|
var StringMap = require('stringmap');
|
|
|
|
/**
|
|
* @dgService errorNamespaceMap
|
|
* A map of error namespaces by name.
|
|
*/
|
|
module.exports = function errorNamespaceMap() {
|
|
return new StringMap();
|
|
}; |