Initial Commit
diff --git a/src/SearchStrategies/literal.js b/src/SearchStrategies/literal.js
new file mode 100644
index 0000000..9bddbe9
--- /dev/null
+++ b/src/SearchStrategies/literal.js
@@ -0,0 +1,15 @@
+module.exports = new LiteralSearchStrategy();
+
+function LiteralSearchStrategy(){
+ var self = this;
+
+ function doMatch(string,crit){
+ return string.toLowerCase().indexOf(crit.toLowerCase()) >= 0;
+ }
+
+ self.matches = function(string,crit){
+ if( typeof string !== 'string' ) return false;
+ string = string.trim();
+ return doMatch(string,crit);
+ };
+};
\ No newline at end of file