Comparing version 3.7.2 to 3.7.3
@@ -7,10 +7,9 @@ "use strict"; | ||
exports["default"] = foldLine; | ||
var _runes = _interopRequireDefault(require("runes2")); | ||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } | ||
var _runes = require("runes2"); | ||
function foldLine(line) { | ||
var parts = []; | ||
var length = 75; | ||
while ((0, _runes["default"])(line).length > length) { | ||
parts.push(_runes["default"].substring(line, 0, length)); | ||
line = _runes["default"].substring(line, length); | ||
while ((0, _runes.runes)(line).length > length) { | ||
parts.push((0, _runes.substring)(line, 0, length)); | ||
line = (0, _runes.substring)(line, length); | ||
length = 74; | ||
@@ -17,0 +16,0 @@ } |
{ | ||
"name": "ics", | ||
"version": "3.7.2", | ||
"version": "3.7.3", | ||
"description": "iCal (ics) file generator", | ||
@@ -5,0 +5,0 @@ "exports": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
57720
934