Improve Jqhtml_Integration.js documentation with hydration system explanation Add jqhtml-laravel integration packages for traditional Laravel projects 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
9 lines
198 B
JavaScript
9 lines
198 B
JavaScript
var UNIX_SEPARATOR = '/';
|
|
var WINDOWS_SEPARATOR_PATTERN = /\\/g;
|
|
|
|
function normalizePath(path) {
|
|
return path.replace(WINDOWS_SEPARATOR_PATTERN, UNIX_SEPARATOR);
|
|
}
|
|
|
|
module.exports = normalizePath;
|