summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/tools/wtstats/template/models/search.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/tools/wtstats/template/models/search.js')
-rw-r--r--src/third_party/wiredtiger/tools/wtstats/template/models/search.js19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/third_party/wiredtiger/tools/wtstats/template/models/search.js b/src/third_party/wiredtiger/tools/wtstats/template/models/search.js
deleted file mode 100644
index 7874986f0b6..00000000000
--- a/src/third_party/wiredtiger/tools/wtstats/template/models/search.js
+++ /dev/null
@@ -1,19 +0,0 @@
-var AmpersandState = require('ampersand-state'),
- debug = require('debug')('model:search');
-
-var Search = module.exports = AmpersandState.extend({
- props: {
- content: {
- type: 'string',
- default: ''
- }
- },
- derived: {
- empty: {
- deps: ['content'],
- fn: function () {
- return this.content === '';
- }
- }
- }
-});