Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@UskeS
Created March 31, 2022 03:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save UskeS/defa6bbaf491ca7dc70edfe393db8c5d to your computer and use it in GitHub Desktop.
Save UskeS/defa6bbaf491ca7dc70edfe393db8c5d to your computer and use it in GitHub Desktop.
[JXA][Automator] 選択したmm単位表記テキストをinch単位に変換して置換する
function run(input, parameters) {
var input = parseFloat(input[0]);
return (Math.round(input * 1000 / 254) / 100) + "";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment