Rename function to avoid minification failure

This commit is contained in:
Tim Schaub
2021-09-07 14:07:58 -06:00
parent 1f3e3efe5d
commit c0546c5f07
5 changed files with 26 additions and 26 deletions
+7 -7
View File
@@ -24,8 +24,8 @@ import {assert} from '../asserts.js';
import {assign} from '../obj.js';
import {get as getProjection} from '../proj.js';
import {
readNonNegativeInteger,
readNonNegativeIntegerString,
readPositiveInteger,
writeStringTextNode,
} from './xsd.js';
@@ -51,14 +51,14 @@ const FEATURE_COLLECTION_PARSERS = {
*/
const TRANSACTION_SUMMARY_PARSERS = {
'http://www.opengis.net/wfs': {
'totalInserted': makeObjectPropertySetter(readNonNegativeInteger),
'totalUpdated': makeObjectPropertySetter(readNonNegativeInteger),
'totalDeleted': makeObjectPropertySetter(readNonNegativeInteger),
'totalInserted': makeObjectPropertySetter(readPositiveInteger),
'totalUpdated': makeObjectPropertySetter(readPositiveInteger),
'totalDeleted': makeObjectPropertySetter(readPositiveInteger),
},
'http://www.opengis.net/wfs/2.0': {
'totalInserted': makeObjectPropertySetter(readNonNegativeInteger),
'totalUpdated': makeObjectPropertySetter(readNonNegativeInteger),
'totalDeleted': makeObjectPropertySetter(readNonNegativeInteger),
'totalInserted': makeObjectPropertySetter(readPositiveInteger),
'totalUpdated': makeObjectPropertySetter(readPositiveInteger),
'totalDeleted': makeObjectPropertySetter(readPositiveInteger),
},
};