How to use the applySync function from bindings
Find comprehensive JavaScript bindings.applySync code examples handpicked from public code repositorys.
GitHub: albanm/node-libxslt
157 158 159 160 161 162 163 164 165
binding.applyAsync(this.stylesheetObj, source, paramsArray, outputString, docResult, function(err, strResult){ if (err) return callback(err); callback(null, outputString ? strResult : docResult); }); } else { var strResult = binding.applySync(this.stylesheetObj, source, paramsArray, outputString, docResult); return outputString ? strResult : docResult; } };
62
50
12
+ 9 other calls in file
GitHub: bbc/node-libxslt-old
133 134 135 136 137 138 139 140 141 142
binding.applyAsync(this.stylesheetObj, source, paramsArray, result, function(err){ if (err) return callback(err); callback(null, outputString ? result.toString() : result); }); } else { binding.applySync(this.stylesheetObj, source, paramsArray, result); return outputString ? result.toString() : result; } }; /**
62
0
10
+ 7 other calls in file
bindings.createKey is the most popular function in bindings (8616 examples)