Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ssml-dom

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ssml-dom - npm Package Compare versions

Comparing version 0.0.2 to 0.0.3

14

dist/index.es.js

@@ -288,3 +288,15 @@ var target$1 = 'Actions on Google';

export { ActionsOnGoogle, Conversation, Document, Node, Root, SimpleJSON, XMLDeclaration };
var TextNode = /** @class */ (function () {
function TextNode(text) {
this.type = 'text';
this.text = '';
this.text = text;
}
TextNode.prototype.toString = function () {
return this.text;
};
return TextNode;
}());
export { ActionsOnGoogle, Conversation, Document, Node, Root, SimpleJSON, TextNode, XMLDeclaration };
//# sourceMappingURL=index.es.js.map

@@ -292,2 +292,14 @@ 'use strict';

var TextNode = /** @class */ (function () {
function TextNode(text) {
this.type = 'text';
this.text = '';
this.text = text;
}
TextNode.prototype.toString = function () {
return this.text;
};
return TextNode;
}());
exports.ActionsOnGoogle = ActionsOnGoogle;

@@ -299,3 +311,4 @@ exports.Conversation = Conversation;

exports.SimpleJSON = SimpleJSON;
exports.TextNode = TextNode;
exports.XMLDeclaration = XMLDeclaration;
//# sourceMappingURL=index.js.map

2

dist/src/dom/text.d.ts
import type { NodeType } from './utils';
export default class TextNode {
export declare class TextNode {
type: NodeType;

@@ -4,0 +4,0 @@ text: string;

{
"name": "ssml-dom",
"version": "0.0.2",
"version": "0.0.3",
"description": "A work-in-progress implementation of a DOM-like API for SSML",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc