feat(formatter): add encode uri using encodeURIComponent action
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
import base64ToString from './text/base64-to-string.js';
|
||||
import capitalize from './text/capitalize.js';
|
||||
import encodeUriComponent from './text/encode-uri-component.js';
|
||||
import extractEmailAddress from './text/extract-email-address.js';
|
||||
import extractNumber from './text/extract-number.js';
|
||||
import htmlToMarkdown from './text/html-to-markdown.js';
|
||||
@@ -20,6 +21,7 @@ import formatDateTime from './date-time/format-date-time.js';
|
||||
const options = {
|
||||
base64ToString,
|
||||
capitalize,
|
||||
encodeUriComponent,
|
||||
extractEmailAddress,
|
||||
extractNumber,
|
||||
htmlToMarkdown,
|
||||
|
@@ -0,0 +1,12 @@
|
||||
const encodeUriComponent = [
|
||||
{
|
||||
label: 'Input',
|
||||
key: 'input',
|
||||
type: 'string',
|
||||
required: true,
|
||||
description: 'URI Component to encode',
|
||||
variables: true,
|
||||
},
|
||||
];
|
||||
|
||||
export default encodeUriComponent;
|
@@ -4,7 +4,7 @@ const encodeUri = [
|
||||
key: 'input',
|
||||
type: 'string',
|
||||
required: true,
|
||||
description: 'Encode the URI.',
|
||||
description: 'URI to encode',
|
||||
variables: true,
|
||||
},
|
||||
];
|
||||
|
Reference in New Issue
Block a user