forked from sheetjs/sheetjs
		
	- decode sheet name for XLSX and XLML (fixes #203 h/t @rocketmonkeys) - XFExt (fixes #298 h/t @aetna-softwares @aimcom @baharudinafif) - handle truly empty `<is>` elements (fixes #506 h/t @asksahil) - pin version numbers for dependencies (fixes #469 h/t @nhtera) - sed usage fix (see #572 h/t @liryna) - fix hex2RGB substr indices (fixes #294 h/t @kamorahul) - removed stale typescript files (see #442) - reworked shift formula regex (fixed #551 h/t @SheetJSDev) - README note on webpack codepage suppression (fixes #438 h/t @rusty1s) - README note on WTF (fixes #487 h/t @livesoftware)
		
			
				
	
	
		
			12 lines
		
	
	
		
			266 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			266 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| # strip_sourcemap.sh -- strip sourcemaps from a JS file (missing from uglifyjs)
 | |
| # Copyright (C) 2014-present  SheetJS
 | |
| 
 | |
| if [ $# -gt 0 ]; then
 | |
| 	if [ -e "$1" ]; then
 | |
| 		sed -i.sheetjs '/sourceMappingURL/d' "$1"
 | |
| 	fi
 | |
| else
 | |
| 	cat - | sed '/sourceMappingURL/d'
 | |
| fi
 |