You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

37 lines
914 B

var hamjest = require("hamjest");
var _ = require("underscore");
var documents = require("../../lib/documents");
exports.isEmptyRun = isRun({children: []});
exports.isRun = isRun;
exports.isText = isText;
exports.isHyperlink = isHyperlink;
exports.isTable = isTable;
exports.isRow = isRow;
function isRun(properties) {
return isDocumentElement(documents.types.run, properties);
}
function isText(text) {
return isDocumentElement(documents.types.text, {value: text});
}
function isHyperlink(properties) {
return isDocumentElement(documents.types.hyperlink, properties);
}
function isTable(options) {
return isDocumentElement(documents.types.table, options);
}
function isRow(options) {
return isDocumentElement(documents.types.tableRow, options);
}
function isDocumentElement(type, properties) {
return hamjest.hasProperties(_.extend({type: hamjest.equalTo(type)}, properties));
}