Socket
Socket
Sign inDemoInstall

@vue/server-renderer

Package Overview
Dependencies
Maintainers
1
Versions
231
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vue/server-renderer - npm Package Compare versions

Comparing version 3.2.2 to 3.2.3

3

dist/server-renderer.cjs.js

@@ -66,3 +66,3 @@ 'use strict';

if (shared.isBooleanAttr(attrKey)) {
return value === false ? `` : ` ${attrKey}`;
return shared.includeBooleanAttr(value) ? ` ${attrKey}` : ``;
}

@@ -981,2 +981,3 @@ else if (shared.isSSRSafeAttrName(attrKey)) {

exports.ssrIncludeBooleanAttr = shared.includeBooleanAttr;
exports.pipeToNodeWritable = pipeToNodeWritable;

@@ -983,0 +984,0 @@ exports.pipeToWebWritable = pipeToWebWritable;

@@ -66,3 +66,3 @@ 'use strict';

if (shared.isBooleanAttr(attrKey)) {
return value === false ? `` : ` ${attrKey}`;
return shared.includeBooleanAttr(value) ? ` ${attrKey}` : ``;
}

@@ -733,2 +733,3 @@ else if (shared.isSSRSafeAttrName(attrKey)) {

exports.ssrIncludeBooleanAttr = shared.includeBooleanAttr;
exports.pipeToNodeWritable = pipeToNodeWritable;

@@ -735,0 +736,0 @@ exports.pipeToWebWritable = pipeToWebWritable;

@@ -8,2 +8,3 @@ /// <reference types="node" />

import { Slots } from 'vue';
import { includeBooleanAttr as ssrIncludeBooleanAttr } from '@vue/shared';
import { VNode } from 'vue';

@@ -58,2 +59,4 @@ import { Writable } from 'stream';

export { ssrIncludeBooleanAttr }
export declare function ssrInterpolate(value: unknown): string;

@@ -60,0 +63,0 @@

import { ssrContextKey, warn as warn$1, Fragment, Static, Comment, Text, mergeProps, ssrUtils, createApp, createVNode } from 'vue';
import { makeMap, isOn, escapeHtml, normalizeClass, propsToAttrMap, isBooleanAttr, isSSRSafeAttrName, isString, normalizeStyle, stringifyStyle, escapeHtmlComment, isVoidTag, isPromise, isArray, isFunction, NOOP, toDisplayString, isObject, looseEqual, looseIndexOf } from '@vue/shared';
import { makeMap, isOn, escapeHtml, normalizeClass, propsToAttrMap, isBooleanAttr, includeBooleanAttr, isSSRSafeAttrName, isString, normalizeStyle, stringifyStyle, escapeHtmlComment, isVoidTag, isPromise, isArray, isFunction, NOOP, toDisplayString, isObject, looseEqual, looseIndexOf } from '@vue/shared';
export { includeBooleanAttr as ssrIncludeBooleanAttr } from '@vue/shared';

@@ -61,3 +62,3 @@ /*! *****************************************************************************

if (isBooleanAttr(attrKey)) {
return value === false ? `` : ` ${attrKey}`;
return includeBooleanAttr(value) ? ` ${attrKey}` : ``;
}

@@ -64,0 +65,0 @@ else if (isSSRSafeAttrName(attrKey)) {

{
"name": "@vue/server-renderer",
"version": "3.2.2",
"version": "3.2.3",
"description": "@vue/server-renderer",

@@ -34,8 +34,8 @@ "main": "index.js",

"peerDependencies": {
"vue": "3.2.2"
"vue": "3.2.3"
},
"dependencies": {
"@vue/shared": "3.2.2",
"@vue/compiler-ssr": "3.2.2"
"@vue/shared": "3.2.3",
"@vue/compiler-ssr": "3.2.3"
}
}
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