All Downloads are FREE. Search and download functionalities are using the official Maven repository.

META-INF.resources.js.json.search.lunr.js Maven / Gradle / Ivy

/*-
 * #%L
 * io.earcam.utilitarian.site.search.offline
 * %%
 * Copyright (C) 2017 earcam
 * %%
 * SPDX-License-Identifier: (BSD-3-Clause OR EPL-1.0 OR Apache-2.0 OR MIT)
 * 
 * You must choose to accept, in full - any individual or combination of 
 * the following licenses:
 * 
 * #L%
 */
function jsonSearchIndex(json, query)
{
	var data = JSON.parse(json);
	var index = lunr.Index.load( data.titleMap === undefined ? data : data.index );
	return JSON.stringify({ result : index.search(query) });
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy