 c177363a19
			
		
	
	c177363a19
	
	
	
		
			
			🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
		
			
				
	
	
		
			9 lines
		
	
	
		
			176 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			176 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 'use strict'
 | |
| 
 | |
| const parse = require('./parse')
 | |
| const valid = (version, options) => {
 | |
|   const v = parse(version, options)
 | |
|   return v ? v.version : null
 | |
| }
 | |
| module.exports = valid
 |