UNPKG

recoder-code

Version:

Complete AI-powered development platform with ML model training, plugin registry, real-time collaboration, monitoring, infrastructure automation, and enterprise deployment capabilities

14 lines (10 loc) 357 B
'use strict'; const isTextIndex = require('./isTextIndex'); module.exports = function applySchemaCollation(indexKeys, indexOptions, schemaOptions) { if (isTextIndex(indexKeys)) { return; } if (schemaOptions.hasOwnProperty('collation') && !indexOptions.hasOwnProperty('collation')) { indexOptions.collation = schemaOptions.collation; } };