applescript-utils
Advanced tools
Comparing version 0.1.16 to 0.1.17
{ | ||
"name": "applescript-utils", | ||
"version": "0.1.16", | ||
"version": "0.1.17", | ||
"description": "Utilities for AppleScript scripts.", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
export function pathPartsToPathString(pathParts) { | ||
return pathParts.join(' of '); | ||
return pathParts.map((part) => part.fullName).join(' of '); | ||
} | ||
@@ -4,0 +4,0 @@ export function pathStringToPathParts(pathString) { |
Sorry, the diff of this file is not supported yet
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
101945