-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: Buffer width for NodeJS bindings
- Loading branch information
1 parent
014257c
commit b1cf5e5
Showing
6 changed files
with
107 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,22 @@ | ||
const stringzilla = require('bindings')('stringzilla'); | ||
module.exports = stringzilla; | ||
const compiled = require('bindings')('stringzilla'); | ||
|
||
module.exports = { | ||
/** | ||
* Searches for a short string in a long one. | ||
* | ||
* @param {string} haystack | ||
* @param {string} needle | ||
* @returns {bigint} | ||
*/ | ||
find: compiled.find, | ||
|
||
/** | ||
* Searches for a substring in a larger string. | ||
* | ||
* @param {string} haystack | ||
* @param {string} needle | ||
* @param {boolean} overlap | ||
* @returns {bigint} | ||
*/ | ||
count: compiled.count | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters