コードを持っている
obj.property.style.split( /\s*;\s*/ ).forEach( function(s) {...
問題は*/
、パターン内のがコメント区切り文字として機能していることです。
例えば
/* comment this out please
obj.property.style.split( /\s*;\s*/ ).forEach( function(s) {..
OOPS - NOT commented out */
これを引用する通常の方法はregexp
何ですか?