mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-11-26 09:25:24 +01:00
1ada95e04a
- Convert project to Javascript/Typescript - Allow custom headers to be passed in (optional) - Allow body to be optional
11 lines
345 B
JavaScript
11 lines
345 B
JavaScript
/**
|
|
* @author Toru Nagashima <https://github.com/mysticatea>
|
|
*/
|
|
"use strict";
|
|
|
|
module.exports = {
|
|
isCombiningCharacter: require("./is-combining-character"),
|
|
isEmojiModifier: require("./is-emoji-modifier"),
|
|
isRegionalIndicatorSymbol: require("./is-regional-indicator-symbol"),
|
|
isSurrogatePair: require("./is-surrogate-pair")
|
|
};
|